aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2017-01-02Fix sending of data > 16384 with HTTP/21.0.0-pre.2Loïc Hoguin
2017-01-02Implement HTTP/2 server pushLoïc Hoguin
2017-01-02Fix sending of body as iodata() with HTTPLoïc Hoguin
2016-11-25Generate rebar.config on buildLeo Liu
2016-11-16Update Erlang.mk and related changesLoïc Hoguin
2016-06-28Properly handle HTTP/1.1 HEAD requestsLoïc Hoguin
No response body is expected from now on.
2016-06-20Send proper scheme for HTTP/2Loïc Hoguin
Clear connections send "http" and TLS connections "https".
2016-06-08Merge branch 'fix_badarg_on_ping' of https://github.com/philipstears/gunLoïc Hoguin
2016-06-06Fix badarg in http/2 ping generationPhilip Stears
2016-06-06gun_http2 erroneously using cow_spdy.Philip Stears
2016-06-06Handle RST_STREAM in HTTP/2 protocolLoïc Hoguin
2016-05-27Initial HTTP/2 supportLoïc Hoguin
A number of things are not implemented, but this is enough to connect to Twitter and get a response sent back. It also currently doesn't have tests.
2015-12-04Remove faulty ; in exampleStefan Hellkvist
@ exit(timeout) in receive ... after 1000 ->
2015-10-22Merge branch 'master' of https://github.com/rightfold/gunLoïc Hoguin
2015-10-22fixed typo in code snippetmagicgoose
2015-10-16fix trivial typo on guide/connect docYuce Tekol
2015-08-31Use https instead of git for ranch and cowlib dependenciesRadek Slupik
This is compatible with Cowboy and doesn't require authentication with GitHub. Rebar and Mix do not automatically turn git:// into https://. Fixes #82
2015-08-17Fix compilation issueLoïc Hoguin
Oops!
2015-08-17Gun is developed for Erlang 18+Loïc Hoguin
2015-08-17Fix ssl:negotiated_next_protocol/1 is deprecated.Maxim Krentovskiy
2015-08-16Handle 204 responses properlyLoïc Hoguin
Thanks @petrohi for the initial patch.
2015-08-16Update apt-get before installing things in CILoïc Hoguin
2015-08-16Include user headers in HTTP/1 requestsLoïc Hoguin
Oops! Thanks everyone who reported/submitted patches.
2015-08-16Fix a harmless typo in a testLoïc Hoguin
2015-07-26Add CircleCILoïc Hoguin
2015-05-12Update erlang.mkLoïc Hoguin
2015-05-05Update to 1.0.0-pre.11.0.0-pre.1Loïc Hoguin
2015-05-03Add a missing Transfer-Encoding: chunked header in HTTPLoïc Hoguin
When we stream content we need to set this header manually from Gun.
2015-04-13One last SPDY test for todayLoïc Hoguin
2015-04-13More SPDY testsLoïc Hoguin
2015-04-13Fix timing issue in one of the testsLoïc Hoguin
2015-04-13Fix previous testLoïc Hoguin
Sigh.
2015-04-13Even more SPDY testsLoïc Hoguin
2015-04-13One more SPDY testLoïc Hoguin
2015-04-13One more SPDY testLoïc Hoguin
2015-04-13One more SPDY testLoïc Hoguin
2015-04-13Check that the connection is down after we send a GOAWAYLoïc Hoguin
2015-04-13Add another SPDY testLoïc Hoguin
2015-04-13Rename a few SPDY testsLoïc Hoguin
2015-04-13Fix previous SPDY testLoïc Hoguin
2015-04-13Add more SPDY testsLoïc Hoguin
One of the test is incomplete due to a missing window_update building function in cowlib.
2015-04-12Add a SPDY test and improve a few badstate messagesLoïc Hoguin
2015-04-12Add more SPDY testsLoïc Hoguin
2015-04-12Add more SPDY testsLoïc Hoguin
2015-04-12More and improved SPDY testsLoïc Hoguin
2015-04-12Improve existing spdy tests and add anotherLoïc Hoguin
2015-04-12Add more complex SPDY testsLoïc Hoguin
These new tests have the spdy_server send frames back.
2015-04-12Check we are connected using SPDY in the twitter_SUITELoïc Hoguin
2015-04-11Add initial spdy_SUITELoïc Hoguin
The tests will be written against a robot server, spdy_server, which parses and records all frames it receives. This robot server can later be enhanced to perform actions at specific times to send responses or simulate error conditions.
2015-04-10Add headers to gun_ws_upgrade messageLoïc Hoguin
Also improves the code and documentation about this message. It was incorrectly specified that a gun_ws_upgrade message could be sent on error; instead a gun_response is sent.