You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING UTILITY CHANGE: Deprecated methods http::parser::parse_headers, http::response::parse_complete, and http::request::parse_complete have
been removed.
Security: Disabled SSLv3 in example servers.
Feature: Adds basic support for accessing HTTP request bodies in the http
handler. #181
Feature: Adds the ability to register a shutdown handler when using the
iostream transport. This provides a clean interface for triggering the shut
down of external sockets and other cleanup without hooking in to higher level
WebSocket handlers.
Feature: Adds the ability to register a write handler when using the iostream
transport. This handler can be used to handle transport output in place of
registering an ostream to write to.
Feature: Adds a new logging policy that outputs to syslog. #386 Thank you Tom
Hughes for submitting the initial version of this policy.
Improvement: Message payload logging now prints text for text messages rather
than binary.
Improvement: Overhaul of handshake state machine. Should make it impossible
for exceptions to bubble out of transport methods like io_service::run.
Improvement: Overhaul of handshake error reporting. Fail handler error codes
will be more detailed and precise. Adds new [fail] and [http] logging channels
that log failed websocket connections and successful HTTP connections
respectively. A new aggregate channel package, alevel::access_core, allows
enabling connect, disconnect, fail, and http together. Successful HTTP
connections will no longer trigger a fail handler.
Improvement: Ability to terminate connection during an http handler to cleanly
suppress the default outgoing HTTP response.
Documentation: Add Sending & Receiving Messages step to chapter one of the utility_client tutorial. Update utility_client example to match.