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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

websocket::frame_type

The type of received control frame.

Synopsis

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

enum frame_type
Values

Name

Description

close

A close frame was received.

ping

A ping frame was received.

pong

A pong frame was received.

Description

Values of this type are passed to the control frame callback set using stream::control_callback.


PrevUpHomeNext