#Change Log
- Remove mod tuple from app.src file. That crashed releases as it referenced a module that does not exist.
- Fix wsock_handshake:handle_response/2 spec
- Move back to the header file (wsock.hrl) the definition of the #message{} record. Otherwise the record was not exported outside of the
wsock_message
module.
- Fix versio number in app.src file
- Handle fragmented HTTP messages. In previous version if you tried to decode a fragmented HTTP message with
wsock_http:decode
you will run into an error. Now, using erlang:decode_packet,wsock_http:decode
can work around this issue. If you pass a fragmented http message it will return the atomfragmendted_http_message
.
- Fix a bugs in type specs.