Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit 2daa88693b.
PrevUpHomeNext

websocket::permessage_deflate_status

permessage-deflate extension status.

Synopsis

Defined in header <boost/beast/websocket/stream.hpp>

struct permessage_deflate_status
Data Members

Name

Description

active

true if the permessage-deflate extension is active

client_window_bits

The number of window bits used by the client.

server_window_bits

The number of window bits used by the server.

Description

These settings indicate the status of the permessage-deflate extension, showing if it is active and the window bits in use.

Objects of this type are used with beast::websocket::stream::get_status.


PrevUpHomeNext