Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-28 | Use timetrap instead of normal timeouts in shutdown_SUITE | Loïc Hoguin | |
2020-03-28 | In gun_SUITE shutdown_reason case, don't match in receive | Loïc Hoguin | |
Match inside the clause instead. This should make clearer the occasional failure. | |||
2020-03-27 | Use infinity timeout for gun:await in reply_to tests | Loïc Hoguin | |
2020-03-27 | Increase the gun_tls_proxy tests timeout | Loïc Hoguin | |
2020-03-27 | Don't explictly wait for the message in reply_to tests | Loïc Hoguin | |
2020-03-27 | Split the gun_SUITE:reply_to test in two cases | Loïc Hoguin | |
To attempt to fix a timetrap_timeout issue occuring sometimes. I have little confidence about this fixing anything but it will not hurt either. | |||
2020-03-27 | Fix time related intermittent error in gun_cookies:gc_test | Loïc Hoguin | |
If we set Max-Age to 1 we may end up GCing the cookie immediately. Instead we set it to 2 and increase all time values by 1 second. | |||
2020-03-27 | Improve test timeout handling in gun_SUITE | Loïc Hoguin | |
Instead of timeouts, favor receiving events from the event handler gun_test_event_h. Remove most other timeouts in particular receive timeouts in favor of a Common Test timetrap timeout global to this test suite of 30 seconds. | |||
2020-03-26 | Don't make the rfc6265bis test giver time out | Loïc Hoguin | |
2020-03-26 | Fix IPv6 related changes to tests | Loïc Hoguin | |
Turns out we can't rely on IPv4 being available if we set the socket in IPv6 mode. Instead the origin is modified to either setup IPv4 or IPv6 depending on the test's needs. | |||
2020-03-25 | Gun 2.0.0-pre.22.0.0-pre.2 | Loïc Hoguin | |
2020-03-25 | Update migration guide | Loïc Hoguin | |
2020-03-25 | Fix host/:authority header when connecting to an IPv6 address | Loïc Hoguin | |
2020-03-25 | Fix crash in gun:info/1 when socket is closed | Loïc Hoguin | |
The call to Transport:sockname/1 can return an error if the socket was closed as we were gathering info. In that case we simply do not fill in the address and port information. | |||
2020-03-23 | Tweak connection timeouts tests for Windows | Loïc Hoguin | |
It seems that the retry behavior changed recently. It would be better to retrieve the exact values and calculate how much time we want to wait but that will do for now. | |||
2020-03-23 | Require OTP-22+ | Loïc Hoguin | |
2020-03-23 | Fix flow control test since it's more strict now | Loïc Hoguin | |
2020-03-19 | Fix gun_public_suffix compile problem | Loïc Hoguin | |
There's no need to have idna listed in ALL_DEPS_DIR we only use it for "make gen" which does not require it. | |||
2020-03-15 | Document the cookie store option and related modules | Loïc Hoguin | |
Also contains a few small changes and Dialyzer fixes. | |||
2020-03-12 | Make Gun use the cookie store when configured to | Loïc Hoguin | |
2020-03-06 | Add additional cookie expiration tests | Loïc Hoguin | |
2020-03-05 | Implement gun_cookies:gc/1 and :session_gc/1 | Loïc Hoguin | |
2020-03-05 | Add the public suffix check to set_cookie | Loïc Hoguin | |
2020-03-04 | Initial implementation of the gun_cookies cookie store | Loïc Hoguin | |
2020-02-27 | Remove two unnecessary clauses | Loïc Hoguin | |
As reported by Dialyzer. | |||
2020-02-27 | Use specific error when HTTP/2 receives HTTP/1 response | Loïc Hoguin | |
2020-02-27 | Add a test getting preface errors in the 'DOWN' reason | Loïc Hoguin | |
2020-02-27 | Detect invalid HTTP/2 preface errors | Loïc Hoguin | |
And make sure all HTTP/2 connection_error(s) result in a gun_down message containing the error. In the preface case we do not send a gun_error message (because there's no stream open yet) and gun_down was always saying normal. Also make sure the human readable reason is included in the gun_error message, if any. | |||
2020-02-10 | Handle cow_http2_machine timeouts | Loïc Hoguin | |
2019-11-04 | Fix a crash introduced in the previous commit | Loïc Hoguin | |
2019-10-17 | Use maps for looking up HTTP/2 streams | Loïc Hoguin | |
This should be much faster than using lists:keyfind and friends. This matters for connections that have a lot of concurrent streams. | |||
2019-10-08 | Fix retrying on disconnect with retry=1 | Loïc Hoguin | |
2019-10-01 | Cowlib no longer returns lingering_data tuples | Loïc Hoguin | |
2019-10-01 | Don't try upgrading 101 responses with no/bad Upgrade header | Loïc Hoguin | |
Also rework the different handle_head scenarios in separate functions. | |||
2019-09-27 | Gun 2.0.0-pre.12.0.0-pre.1 | Loïc Hoguin | |
2019-09-26 | Add the migration guide to 2.0 | Loïc Hoguin | |
2019-09-26 | Document the cow_http2_machine options | Loïc Hoguin | |
The details are not given for now. The best would be to document them in Cowlib and refer to that documentation instead of duplicating the information in both the Gun and Cowboy manuals. | |||
2019-09-26 | More README updates | Loïc Hoguin | |
2019-09-26 | Update the README | Loïc Hoguin | |
2019-09-26 | Don't send duplicate gun_error messages to the same process | Loïc Hoguin | |
2019-09-26 | Remove UnprocessedStreams from the gun_down message | Loïc Hoguin | |
2019-09-26 | Add reply_to option to ws_upgrade; remove notowner entirely | Loïc Hoguin | |
The reply_to option is also propagated when we switch protocols. | |||
2019-09-26 | Add a function to change the connection owner | Loïc Hoguin | |
While at it the gun:info/1 function has been fixed to work even when we are in the not_connected state, and the owner is now also returned. | |||
2019-09-24 | Add auto-ping to Websocket and a silence_pings option | Loïc Hoguin | |
The auto-ping will at regular interval send a ping frame. The silence_pings option defaults to true. It can be set to false when the user needs to receive ping/pong frames. | |||
2019-09-24 | Reject requests/data when using Websocket | Loïc Hoguin | |
2019-09-24 | Initial support for raw send/recv operations | Loïc Hoguin | |
Gun can now be used to send or receive arbitrary data in the following scenarios: * Directly after connecting to a server (this is not terribly useful but it works nevertheless due to the Gun architecture) * After connecting through one or more Socks and/or HTTP proxies. This allows using Gun's proxy capabilities to access servers located beyond firewalls. * After performing an HTTP/1.1 Upgrade. This allows using Gun to implement custom protocols that require upgrading from an HTTP/1.1 connection. As there is still no support for HTTP/2 CONNECT for the time being, there are no relevant streams attached to those use cases and therefore the raw protocol currently expects users to use 'undefined' as the StreamRef value. This is not a final decision and will most likely produce a Dialyzer warning at this time. | |||
2019-09-23 | Properly error out on HTTP/1.0 Websocket upgrade attempts | Loïc Hoguin | |
2019-09-23 | Set server_name_indication for TLS handshakes | Loïc Hoguin | |
This essentially reverts to the old behavior for initial TLS handshakes, and improves TLS support for the Socks/HTTP proxy cases. | |||
2019-09-23 | Use the proper options type for socks/ws states | Loïc Hoguin | |
2019-09-23 | Accept all cow_http2_machine options | Loïc Hoguin | |