Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-03 | Rename gun_data and gun_sse to gun_data_h and gun_sse_h | Loïc Hoguin | |
2018-06-03 | Change messages to gun_upgrade and gun_ws with stream reference | Loïc Hoguin | |
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-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-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-11 | Add missing Websocket clause detecting owner is gone | Loïc Hoguin | |
2017-08-11 | Fix tests | 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-27 | Add content handlers and built-in SSE support | Loïc Hoguin | |
Content handlers are a chain of modules implementing callbacks that receive the body of responses and may modify it (for example for decompressing the content) or act upon it (like sending a message to the owner process. The gun_sse content handler module can be used to translate text/event-stream events on the fly and deliver them to the owner process as a {gun_sse...} message. This feature is currently not documented and is only tested against a public server. It requires an up to date Cowlib. | |||
2016-05-27 | Initial HTTP/2 support | Loï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-08-16 | Fix a harmless typo in a test | Loïc Hoguin | |
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-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-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-03-12 | Update copyright years | Loïc Hoguin | |
2015-03-12 | Add initial Websocket support | Loïc Hoguin | |
All autobahntestsuite tests pass including the permessage-deflate compression tests. Some of the tests pass in a non-strict fashion. They are testing for protocol errors and expect events to happen in a particular order, which is not respected by Gun. Gun fails earlier than is expected due to concurrent processing of frames. The implementation when error occurs during handshake is probably a bit rough at this point. The documentation is also incomplete and/or wrong at this time, though this is the general state of the Gun documentation and will be resolved in a separate commit. | |||
2014-05-12 | Start/stop cowlib for tests, closes #4 | Josh Toft | |
2014-03-21 | Update copyright years | Loïc Hoguin | |
2013-08-29 | The gun_response message now says if data will follow | Loïc Hoguin | |
2013-08-26 | Add gun:open/2 | Loïc Hoguin | |
2013-08-26 | Sync message signature with documentation | Loïc Hoguin | |