Releases: sanmiguel/websocket_client
Releases · sanmiguel/websocket_client
1.1.0
Changes since 1.0.1:
1.0.2:1.0.3:- #32 FEATURE Allow passing options to the underlying socket with
{socket_opts, SOpts}option forwebsocket_client:start_link/3,4
- #32 FEATURE Allow passing options to the underlying socket with
1.0.4:- #35 BUGFIX Prevent crash (allowing clean reconnect) if
send_handshakefails
- #35 BUGFIX Prevent crash (allowing clean reconnect) if
1.1.0:- #34 FEATURE Add
#websocket_req.keepalive_max_attemptsparameter to request, to allow setting the number of keepalive messages sent without receipt of any data from the server before declaring the connection broken and disconnecting cleanly
- #34 FEATURE Add
1.0.1
1.0.0
Changes since 0.8.4:
- Add
{ssl_verify, verify_none | verify_peer | {verify_fun, _}}option forwebsocket_client:start_link/4 - A little spit 'n' polish in comments/docs
Since forking, the websocket_client has been rewritten to be FSM-backed, and the behaviour extended to include onconnect/2 and ondisconnect/2 callbacks. It also handles configurable reconnection on comms loss, periodic pinging of the server as well as automatic responding to pings from the server.
See the README for full details and examples/ for sample handlers.