Lines Matching +full:0 +full:x00000020
30 * @version 0.1.0
36 #define WEBSOCKET_FLAG_FINAL 0x00000001 /**< Final frame */
37 #define WEBSOCKET_FLAG_TEXT 0x00000002 /**< Textual data */
38 #define WEBSOCKET_FLAG_BINARY 0x00000004 /**< Binary data */
39 #define WEBSOCKET_FLAG_CLOSE 0x00000008 /**< Closing connection */
40 #define WEBSOCKET_FLAG_PING 0x00000010 /**< Ping message */
41 #define WEBSOCKET_FLAG_PONG 0x00000020 /**< Pong message */
45 WEBSOCKET_OPCODE_CONTINUE = 0x00, /**< Message continues */
46 WEBSOCKET_OPCODE_DATA_TEXT = 0x01, /**< Textual data */
47 WEBSOCKET_OPCODE_DATA_BINARY = 0x02, /**< Binary data */
48 WEBSOCKET_OPCODE_CLOSE = 0x08, /**< Closing connection */
49 WEBSOCKET_OPCODE_PING = 0x09, /**< Ping message */
50 WEBSOCKET_OPCODE_PONG = 0x0A, /**< Pong message */
61 * @return 0 if ok, <0 if there is an error and connection should be aborted
151 * @return <0 if error, >=0 amount of bytes sent
172 * @retval >=0 amount of bytes received.
189 * @return <0 if error, 0 the connection was closed successfully
203 * @return <0 if error, >=0 the actual websocket to be used by application
214 * @return <0 if error, 0 the websocket connection is now fully closed