Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-31 | Use https instead of git for ranch and cowlib dependencies | Radek 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-17 | Fix compilation issue | Loïc Hoguin | |
Oops! | |||
2015-08-17 | Gun is developed for Erlang 18+ | Loïc Hoguin | |
2015-08-17 | Fix ssl:negotiated_next_protocol/1 is deprecated. | Maxim Krentovskiy | |
2015-08-16 | Handle 204 responses properly | Loïc Hoguin | |
Thanks @petrohi for the initial patch. | |||
2015-08-16 | Update apt-get before installing things in CI | Loïc Hoguin | |
2015-08-16 | Include user headers in HTTP/1 requests | Loïc Hoguin | |
Oops! Thanks everyone who reported/submitted patches. | |||
2015-08-16 | Fix a harmless typo in a test | Loïc Hoguin | |
2015-07-26 | Add CircleCI | Loïc Hoguin | |
2015-05-12 | Update erlang.mk | Loïc Hoguin | |
2015-05-05 | Update to 1.0.0-pre.11.0.0-pre.1 | Loïc Hoguin | |
2015-05-03 | Add a missing Transfer-Encoding: chunked header in HTTP | Loïc Hoguin | |
When we stream content we need to set this header manually from Gun. | |||
2015-04-13 | One last SPDY test for today | Loïc Hoguin | |
2015-04-13 | More SPDY tests | Loïc Hoguin | |
2015-04-13 | Fix timing issue in one of the tests | Loïc Hoguin | |
2015-04-13 | Fix previous test | Loïc Hoguin | |
Sigh. | |||
2015-04-13 | Even more SPDY tests | Loïc Hoguin | |
2015-04-13 | One more SPDY test | Loïc Hoguin | |
2015-04-13 | One more SPDY test | Loïc Hoguin | |
2015-04-13 | One more SPDY test | Loïc Hoguin | |
2015-04-13 | Check that the connection is down after we send a GOAWAY | Loïc Hoguin | |
2015-04-13 | Add another SPDY test | Loïc Hoguin | |
2015-04-13 | Rename a few SPDY tests | Loïc Hoguin | |
2015-04-13 | Fix previous SPDY test | Loïc Hoguin | |
2015-04-13 | Add more SPDY tests | Loïc Hoguin | |
One of the test is incomplete due to a missing window_update building function in cowlib. | |||
2015-04-12 | Add a SPDY test and improve a few badstate messages | Loïc Hoguin | |
2015-04-12 | Add more SPDY tests | Loïc Hoguin | |
2015-04-12 | Add more SPDY tests | Loïc Hoguin | |
2015-04-12 | More and improved SPDY tests | Loïc Hoguin | |
2015-04-12 | Improve existing spdy tests and add another | Loïc Hoguin | |
2015-04-12 | Add more complex SPDY tests | Loïc Hoguin | |
These new tests have the spdy_server send frames back. | |||
2015-04-12 | Check we are connected using SPDY in the twitter_SUITE | Loïc Hoguin | |
2015-04-11 | Add initial spdy_SUITE | Loï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-10 | Add headers to gun_ws_upgrade message | Loï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. | |||
2015-04-10 | Add Websocket options | Loïc Hoguin | |
Allow passing Websocket options through either open or ws_upgrade. Document ws_upgrade/4. | |||
2015-04-10 | Document Websocket options in the manual | Loïc Hoguin | |
2015-04-10 | Make Dialyzer happy | Loïc Hoguin | |
2015-04-10 | Add functions await_up/{1,2,3} for sync open | Loïc Hoguin | |
2015-04-09 | Remove outdated todos | Loïc Hoguin | |
2015-04-09 | Add gun_up and gun_down messages | Loïc Hoguin | |
The flush(Pid) function was enhanced to also discard Websocket messages and the new up/down messages. | |||
2015-04-09 | Fix checking of protocol options | Loïc Hoguin | |
map:to_list -> maps:to_list Only call maps:to_list once. | |||
2015-04-09 | Don't clear out the transport on connection retry | Loïc Hoguin | |
Fixes an issue introduced in the previous commit that broke automatic reconnection. Thanks to Adrian Roe/Steve Strong for the report. | |||
2015-04-08 | Use maps for and improve options | Loïc Hoguin | |
The type option has been removed. The transport and protocols options can be used in its place. The transport_opts option can be used to specify transport options. The http_opts and spdy_opts options can be used to specify protocol specific options. The keepalive option is now a protocol specific option. Defaults depending on the port number have changed. Now only port 443 uses ssl by default, other ports use tcp. | |||
2015-04-08 | Add .gitignore | Loïc Hoguin | |
2015-03-30 | Merge branch 'fix-body-no-contentlength' of https://github.com/unix1/gun | Loïc Hoguin | |
2015-03-29 | Improve request code | Loïc Hoguin | |
The content-type and content-length alone indicate whether a body is present for request/4. The host header can now be overriden. A number of headers like transfer-encoding are automatically deleted from the list of headers we receive. SPDY also deletes connection, keep-alive and proxy-connection. SPDY now sends the port in the :host header. | |||
2015-03-29 | Fixes badarg when using gun:ws_upgrade/{2,3} | Loïc Hoguin | |
Websocket options are a map. | |||
2015-03-28 | Clarify the await functions in the guide | Loïc Hoguin | |
2015-03-27 | Update manual | Loïc Hoguin | |
A number of @todo also remain in this document. The manual pages have been converted to Asciidoc and they can be installed system-wide using make install-docs. The asciidoc rules will be converted into an erlang.mk plugin in the near future. | |||
2015-03-25 | Fix an undef crash with SPDY | Loïc Hoguin | |