libwebsockets
Lightweight C library for HTML5 websockets
|
Enumerations | |
enum | lws_close_status { LWS_CLOSE_STATUS_NOSTATUS = 0 , LWS_CLOSE_STATUS_NORMAL = 1000 , LWS_CLOSE_STATUS_GOINGAWAY = 1001 , LWS_CLOSE_STATUS_PROTOCOL_ERR = 1002 , LWS_CLOSE_STATUS_UNACCEPTABLE_OPCODE = 1003 , LWS_CLOSE_STATUS_RESERVED = 1004 , LWS_CLOSE_STATUS_NO_STATUS = 1005 , LWS_CLOSE_STATUS_ABNORMAL_CLOSE = 1006 , LWS_CLOSE_STATUS_INVALID_PAYLOAD = 1007 , LWS_CLOSE_STATUS_POLICY_VIOLATION = 1008 , LWS_CLOSE_STATUS_MESSAGE_TOO_LARGE = 1009 , LWS_CLOSE_STATUS_EXTENSION_REQUIRED = 1010 , LWS_CLOSE_STATUS_UNEXPECTED_CONDITION = 1011 , LWS_CLOSE_STATUS_TLS_FAILURE = 1015 , LWS_CLOSE_STATUS_CLIENT_TRANSACTION_DONE = 2000 , LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY = 9999 } |
Functions | |
LWS_VISIBLE LWS_EXTERN void | lws_close_reason (struct lws *wsi, enum lws_close_status status, unsigned char *buf, size_t len) |
When we close a ws connection, we can send a reason code and a short UTF-8 description back with the close packet.
enum lws_close_status |
#include <include/libwebsockets/lws-ws-close.h>
enum lws_close_status - RFC6455 close status codes
LWS_VISIBLE LWS_EXTERN void lws_close_reason | ( | struct lws * | wsi, |
enum lws_close_status | status, | ||
unsigned char * | buf, | ||
size_t | len | ||
) |
#include <include/libwebsockets/lws-ws-close.h>
lws_close_reason - Set reason and aux data to send with Close packet If you are going to return nonzero from the callback requesting the connection to close, you can optionally call this to set the reason the peer will be told if possible.
wsi | The websocket connection to set the close reason on |
status | A valid close status from websocket standard |
buf | NULL or buffer containing up to 124 bytes of auxiliary data |
len | Length of data in buf to send |