Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-15 | Allow IP tuple for host #152 | Seudin Kasumovic | |
2018-05-07 | Import the HTTP/2 send_data function from Cowboy | Loïc Hoguin | |
Few changes were required so that's pretty good. It will be split off in a separate common module at a later time. | |||
2018-05-07 | Make sure ws_upgrade/3 and /4 are considered different | Loïc Hoguin | |
2018-05-07 | Fix the document about `ws_upgrade` | niku | |
2018-02-28 | Enable ci.erlang.mk only when CI_ERLANG_MK=1 is set | Loïc Hoguin | |
This will avoid issues with other people's build systems. | |||
2018-01-22 | Gun 1.0.0-pre.51.0.0-pre.5 | Loïc Hoguin | |
2018-01-22 | Add missing gun_inform clauses | Andrei Nesterov | |
2018-01-21 | Do not expect a message body for 204, 304 status codes of HTTP/1.1 | Andrei Nesterov | |
2018-01-21 | Fix HTTP/1 cancel #140 | Peter Hizalev | |
2017-12-16 | Add support for unix sockets | michael-coles | |
2017-12-14 | Silence export_all warnings | Loïc Hoguin | |
2017-12-14 | Change the {gone, Reason} to {shutdown, Reason} plus small fixes | Loïc Hoguin | |
The reason for this change is to avoid annoying supervisor logs when SASL logging is enabled. | |||
2017-12-06 | Don't send transfer-encoding for HTTP/1.0 | Loïc Hoguin | |
2017-11-19 | Add AUTO_CI_WINDOWS variable | Loïc Hoguin | |
2017-11-17 | Move ci.erlang.mk to TEST_DEPS | Loïc Hoguin | |
2017-11-16 | Use ci.erlang.mk for managing tested Erlang versions | Loïc Hoguin | |
2017-11-15 | Fix a potential issue finding end of headers in HTTP/1.1 | Loïc Hoguin | |
This is a bit less efficient but necessary in case we start getting the beginning of \r\n\r\n and it cuts just there. | |||
2017-11-15 | Add preliminary support for trailers | Loïc Hoguin | |
The code is definitely not the best, but as long as it doesn't break anything it should be OK for now. | |||
2017-11-15 | Tweak README | Loïc Hoguin | |
2017-11-15 | Update links in README | Krzysztof Jurewicz | |
Mailing list was archived on August 29, 2016: https://ninenines.eu/archives/extend/ . http://ninenines.eu/support is now a redirect. | |||
2017-10-29 | Add support for informational responses | Loïc Hoguin | |
2017-10-06 | Update CI | Loïc Hoguin | |
2017-10-06 | Don't error out when the owner is gone normally | Loïc Hoguin | |
2017-09-02 | Fix gun_http2:handle/2 when goaway is received | Eduardo Gurgel | |
2017-08-14 | Allow an infinity keepalive value1.0.0-pre.4 | Loïc Hoguin | |
This disables the keepalive mechanism entirely. | |||
2017-08-14 | Add a todo to the documentation | Loïc Hoguin | |
2017-08-13 | Update OTP versions tested | Loïc Hoguin | |
2017-08-12 | Fix a Dialyzer warning | Loïc Hoguin | |
2017-08-12 | Remove SPDY; document HTTP/2 | Loïc Hoguin | |
I just replaced "SPDY" with "HTTP/2" in the documentation. I suspect that's all that's needed, but if there's something off we can fix it later. | |||
2017-08-12 | Fix a warning preventing compilation | Loïc Hoguin | |
2017-08-11 | Add missing Websocket clause detecting owner is gone | Loïc Hoguin | |
2017-08-11 | Fix tests | Loïc Hoguin | |
2017-06-16 | Send a gun_sse message when the SSE stream closes | Loïc Hoguin | |
The message takes the following form: {gun_sse, Pid, Ref, fin} In other words instead of an event we get a 'fin' atom. | |||
2017-05-23 | add missing call to lists:usort/1 | Peter Morgan | |
2017-05-19 | Add partial support for h2 flow control | Loïc Hoguin | |
Specifically we send WINDOW_UPDATE frames in order to receive more data, but we do not respect the flow control window when we are sending request bodies. | |||
2017-05-19 | Ensure the stacktrace is passed when crashing | Loïc Hoguin | |
2017-05-01 | Add gun:info/11.0.0-pre.3 | Loïc Hoguin | |
So far only for getting the socket ip and port on the local side. More values may be added later on. | |||
2017-05-01 | Add transform_header_name http option. | Gustaf Sjoberg | |
2017-05-01 | Add support for choosing a process to reply to | Andrei Nesterov | |
2017-04-30 | Monitor owner and terminate when it dies | Juan Facorro | |
2017-04-30 | Add missing gun_SUITE test suite | Loïc Hoguin | |
Forgot to commit it earlier. My bad! | |||
2017-04-30 | Allow infinity for connect_timeout | Loïc Hoguin | |
2017-04-30 | Fix retry_timeout value check | Loïc Hoguin | |
2017-04-30 | Add connect timeout | sugus-seu | |
2017-04-30 | Ignore errors from Transport:setopts/2 | Yuki Ito | |
2017-04-30 | Propagate the last connection failure reason | Loïc Hoguin | |
Based on a patch by Pablo Polvorin. Thanks! | |||
2017-04-30 | Fix the retry=0 case, add general gun test suite | Loïc Hoguin | |
2017-04-28 | Add 'user_opts' options for use in Websocket handlers | Loïc Hoguin | |
2017-04-28 | Fix a type and variable name in gun_content_handler | Loïc Hoguin | |
2017-04-28 | Add Gun Websocket handlers and protocol support | Loïc Hoguin | |
This functionality can be used to implement custom protocols on top of Websocket, but may also be used to decode frame contents on the fly if necessary. The default_protocol option defines what module should be used when no protocol was selected. The protocols option is a list of key/value pairs used to select the handler depending on the protocol that the server accepted. The feature is currently experimental. |