pub enum EspHttpWsConnection {
New(httpd_handle_t, *mut httpd_req_t),
Receiving(httpd_handle_t, *mut httpd_req_t, Option<httpd_ws_frame_t>),
Closed(c_int),
}
Expand description
A Websocket connection between this server and a client.
pub enum EspHttpWsConnection {
New(httpd_handle_t, *mut httpd_req_t),
Receiving(httpd_handle_t, *mut httpd_req_t, Option<httpd_ws_frame_t>),
Closed(c_int),
}
A Websocket connection between this server and a client.