Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-03 | Add a rebar.config | Loïc Hoguin | |
2014-05-01 | Use cow_http_te for creating chunks | Loïc Hoguin | |
This way the issue fixed by the previous commit won't happen again. | |||
2014-04-30 | Fix chunked transfer-encoding for HTTP/1.1 | Loïc Hoguin | |
2014-04-29 | Add cowlib in the .app deps for release inclusion | Loïc Hoguin | |
2014-03-26 | Default to TCP if port 80 is given, otherwise SSL | Loïc Hoguin | |
2014-03-25 | Automatically calculate the content-length when possible in SPDY | Loïc Hoguin | |
2014-03-25 | Send the status as a number rather than a binary string in SPDY | Loïc Hoguin | |
2014-03-25 | Add gun:flush/1 to easily cleanup the mailbox | Loïc Hoguin | |
It can cleanup all messages from a pid, or just the ones from a specific stream. The latter is useful in combination with cancel/2. | |||
2014-03-25 | Update erlang.mk | Loïc Hoguin | |
2014-03-25 | Fix handling of fin in gun_http | Loïc Hoguin | |
Thanks David Cartt for reporting it. | |||
2014-03-23 | Fix a bug where the buffer was dropped in one chunked decoding case | Loïc Hoguin | |
2014-03-23 | Fix crashes when Transport:setopts/2 returned an error | Loïc Hoguin | |
For some reason this only happened with SSL. I suppose the behavior is a little different from TCP. | |||
2014-03-23 | NPN isn't supported on R15 | Loïc Hoguin | |
We branch out and don't try to use NPN when the function ssl:negotiated_next_protocol/1 isn't exported. | |||
2014-03-21 | Update copyright years | Loïc Hoguin | |
2014-03-21 | Improve the HTTP/1.1 and HTTP/1.0 support | Loïc Hoguin | |
2014-03-21 | Change the error name when there has been too many retries | Loïc Hoguin | |
'gone' is more explicit than 'too_many_retries'. | |||
2014-03-21 | Add an interface to asynchronously wait for responses | Loïc Hoguin | |
The basic idea is that we do an async call and then optionally wait. If we already have a monitor for this connection, then we can reuse it across all await* calls, otherwise one is created automatically. | |||
2014-03-21 | Fix a ws_loop/1 call | Loïc Hoguin | |
2014-03-21 | Add a debug function to send raw data | Loïc Hoguin | |
2014-03-10 | Add gun_http | Loïc Hoguin | |
Support for HTTP/1.1 and compatibility with HTTP/1.0. | |||
2014-03-10 | Improve behavior when losing the connection | Loïc Hoguin | |
2014-03-10 | Fix the client_preferred_next_protocols option | Loïc Hoguin | |
Was due to incorrect documentation before R16B03. Thanks Ingela for finding it! | |||
2013-12-02 | Update erlang.mk | Loïc Hoguin | |
2013-09-04 | Remove unneeded case blocks | Loïc Hoguin | |
2013-09-02 | Fix specs for headers | Loïc Hoguin | |
2013-09-02 | Fix a bug when streaming data | Loïc Hoguin | |
2013-09-02 | cow_spdy:split/1 only returns false on failure | Loïc Hoguin | |
2013-08-31 | Actually handle system messages instead of just dying | Loïc Hoguin | |
2013-08-29 | Add messages to the documentation | Loïc Hoguin | |
2013-08-29 | gun_error sends StreamRef, not StreamID | Loïc Hoguin | |
2013-08-29 | Also add IsFin to Websocket upgrade error | Loïc Hoguin | |
2013-08-29 | The gun_response message now says if data will follow | Loïc Hoguin | |
2013-08-29 | Fix indentation in guide | Loïc Hoguin | |
2013-08-27 | Add a manual | Loïc Hoguin | |
2013-08-27 | Add typespecs to the gun module | Loïc Hoguin | |
2013-08-26 | Small clarification in the guide | Loïc Hoguin | |
2013-08-26 | Add gun:open/2 | Loïc Hoguin | |
2013-08-26 | Sync message signature with documentation | Loïc Hoguin | |
2013-08-26 | Fix server pushed streams | Loïc Hoguin | |
2013-08-26 | Remove the response functions | Loïc Hoguin | |
SPDY unfortunately is still completely client-server and we can't do that according to the specs. | |||
2013-08-25 | Merge branch 'master' of git://github.com/jimt/gun | Loïc Hoguin | |
2013-08-25 | Fix typos | Jim Tittsler | |
2013-08-23 | First draft of the guide | Loïc Hoguin | |
2013-08-23 | Sponsored by LeoFS | Loïc Hoguin | |
2013-08-22 | Initial commit with working SPDY client | Loïc Hoguin | |