gitextract_bky7wddq/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── config/ │ ├── localhost.crt │ ├── localhost.key │ ├── localhost.key.pub │ └── sys.config ├── include/ │ └── http2.hrl ├── priv/ │ └── index.html ├── rebar.config ├── rebar.config.script ├── src/ │ ├── chatterbox.app.src │ ├── chatterbox.erl │ ├── chatterbox_ranch_protocol.erl │ ├── chatterbox_static_content_handler.erl │ ├── chatterbox_static_stream.erl │ ├── chatterbox_sup.erl │ ├── h2_client.erl │ ├── h2_connection.erl │ ├── h2_frame.erl │ ├── h2_frame_continuation.erl │ ├── h2_frame_data.erl │ ├── h2_frame_goaway.erl │ ├── h2_frame_headers.erl │ ├── h2_frame_ping.erl │ ├── h2_frame_priority.erl │ ├── h2_frame_push_promise.erl │ ├── h2_frame_rst_stream.erl │ ├── h2_frame_settings.erl │ ├── h2_frame_window_update.erl │ ├── h2_padding.erl │ ├── h2_settings.erl │ ├── h2_stream.erl │ ├── h2_stream_set.erl │ └── sock.erl └── test/ ├── chatterbox_test_buddy.erl ├── chatterbox_tests.erl ├── client_server_SUITE.erl ├── client_server_SUITE_data/ │ ├── README.md │ ├── bower.json │ ├── css/ │ │ ├── print/ │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme/ │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source/ │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ ├── template/ │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ └── white.css │ ├── index.html │ ├── js/ │ │ └── reveal.js │ ├── lib/ │ │ ├── css/ │ │ │ └── zenburn.css │ │ ├── font/ │ │ │ ├── league-gothic/ │ │ │ │ ├── LICENSE │ │ │ │ └── league-gothic.css │ │ │ └── source-sans-pro/ │ │ │ ├── LICENSE │ │ │ └── source-sans-pro.css │ │ └── js/ │ │ ├── classList.js │ │ └── html5shiv.js │ └── plugin/ │ ├── highlight/ │ │ └── highlight.js │ ├── markdown/ │ │ ├── example.html │ │ ├── example.md │ │ ├── markdown.js │ │ └── marked.js │ ├── math/ │ │ └── math.js │ ├── multiplex/ │ │ ├── client.js │ │ ├── index.js │ │ └── master.js │ ├── notes/ │ │ ├── notes.html │ │ └── notes.js │ ├── notes-server/ │ │ ├── client.js │ │ ├── index.js │ │ └── notes.html │ ├── print-pdf/ │ │ └── print-pdf.js │ ├── search/ │ │ └── search.js │ └── zoom-js/ │ └── zoom.js ├── double_body_handler.erl ├── echo_handler.erl ├── flow_control_SUITE.erl ├── flow_control_handler.erl ├── header_continuation_SUITE.erl ├── http2_frame_size_SUITE.erl ├── http2_spec_3_5_SUITE.erl ├── http2_spec_4_3_SUITE.erl ├── http2_spec_5_1_SUITE.erl ├── http2_spec_5_3_SUITE.erl ├── http2_spec_5_5_SUITE.erl ├── http2_spec_6_1_SUITE.erl ├── http2_spec_6_2_SUITE.erl ├── http2_spec_6_4_SUITE.erl ├── http2_spec_6_5_SUITE.erl ├── http2_spec_6_9_SUITE.erl ├── http2_spec_8_1_SUITE.erl ├── http2c.erl ├── peer_test_handler.erl ├── protocol_errors_SUITE.erl ├── server_connection_receive_window.erl ├── server_stream_receive_window.erl ├── settings_handshake_SUITE.erl └── starting_SUITE.erl