WebSocket data types. More...

Data Structures

struct  zos_websocket_header_t
 HTTP header key/values. More...
 
struct  zos_websocket_config_t
 Websocket Client configuration. More...
 
struct  zos_websocket_frame_t
 Websocket frame data to be used with zn_websocket_client_read_frame() More...
 

Enumerations

enum  zos_websocket_frame_type_t {
  WEBSOCKET_CONTINUATION_FRAME = 0,
  WEBSOCKET_TEXT_FRAME = 1,
  WEBSOCKET_BINARY_FRAME = 2
}
 Websocket frame data type. More...
 

Detailed Description

WebSocket data types.

Enumeration Type Documentation

Websocket frame data type.

Enumerator
WEBSOCKET_CONTINUATION_FRAME 

Frame is a continuation from previous.

WEBSOCKET_TEXT_FRAME 

Data within frame is interrpretted as text.

WEBSOCKET_BINARY_FRAME 

Data within frame is interrpretted as binary.