Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
websocket.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2019 Intel Corporation
9 *
10 * SPDX-License-Identifier: Apache-2.0
11 */
12
13#ifndef ZEPHYR_INCLUDE_NET_WEBSOCKET_H_
14#define ZEPHYR_INCLUDE_NET_WEBSOCKET_H_
15
16#include <zephyr/kernel.h>
17
18#include <zephyr/net/net_ip.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
34#define WEBSOCKET_FLAG_FINAL 0x00000001
35#define WEBSOCKET_FLAG_TEXT 0x00000002
36#define WEBSOCKET_FLAG_BINARY 0x00000004
37#define WEBSOCKET_FLAG_CLOSE 0x00000008
38#define WEBSOCKET_FLAG_PING 0x00000010
39#define WEBSOCKET_FLAG_PONG 0x00000020
48};
49
60typedef int (*websocket_connect_cb_t)(int ws_sock, struct http_request *req,
61 void *user_data);
62
69 const char *host;
70
72 const char *url;
73
81
86 const char **optional_headers;
87
92
100
103
106};
107
126int websocket_connect(int http_sock, struct websocket_request *req,
127 int32_t timeout, void *user_data);
128
150int websocket_send_msg(int ws_sock, const uint8_t *payload, size_t payload_len,
151 enum websocket_opcode opcode, bool mask, bool final,
152 int32_t timeout);
153
174int websocket_recv_msg(int ws_sock, uint8_t *buf, size_t buf_len,
175 uint32_t *message_type, uint64_t *remaining,
176 int32_t timeout);
177
186int websocket_disconnect(int ws_sock);
187
188#if defined(CONFIG_WEBSOCKET_CLIENT)
189void websocket_init(void);
190#else
191static inline void websocket_init(void)
192{
193}
194#endif
195
196#ifdef __cplusplus
197}
198#endif
199
204#endif /* ZEPHYR_INCLUDE_NET_WEBSOCKET_H_ */
HTTP client API.
int(* http_header_cb_t)(int sock, struct http_request *req, void *user_data)
Callback can be used if application wants to construct additional HTTP headers when the HTTP request ...
Definition: client.h:79
int websocket_recv_msg(int ws_sock, uint8_t *buf, size_t buf_len, uint32_t *message_type, uint64_t *remaining, int32_t timeout)
Receive websocket msg from peer.
websocket_opcode
Definition: websocket.h:41
int(* websocket_connect_cb_t)(int ws_sock, struct http_request *req, void *user_data)
Callback called after Websocket connection is established.
Definition: websocket.h:60
int websocket_connect(int http_sock, struct websocket_request *req, int32_t timeout, void *user_data)
Connect to a server that provides Websocket service.
static void websocket_init(void)
Definition: websocket.h:191
int websocket_send_msg(int ws_sock, const uint8_t *payload, size_t payload_len, enum websocket_opcode opcode, bool mask, bool final, int32_t timeout)
Send websocket msg to peer.
int websocket_disconnect(int ws_sock)
Close websocket.
@ WEBSOCKET_OPCODE_PONG
Definition: websocket.h:47
@ WEBSOCKET_OPCODE_DATA_TEXT
Definition: websocket.h:43
@ WEBSOCKET_OPCODE_CLOSE
Definition: websocket.h:45
@ WEBSOCKET_OPCODE_CONTINUE
Definition: websocket.h:42
@ WEBSOCKET_OPCODE_DATA_BINARY
Definition: websocket.h:44
@ WEBSOCKET_OPCODE_PING
Definition: websocket.h:46
Public kernel APIs.
IPv6 and IPv4 definitions.
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__INT32_TYPE__ int32_t
Definition: stdint.h:74
__UINT64_TYPE__ uint64_t
Definition: stdint.h:91
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Definition: parser.h:190
HTTP client request.
Definition: client.h:224
Websocket client connection request.
Definition: websocket.h:67
size_t tmp_buf_len
Length of the user supplied temp buffer.
Definition: websocket.h:105
const struct http_parser_settings * http_cb
User supplied list of callback functions if the calling application wants to know the parsing status ...
Definition: websocket.h:99
const char * url
URL of the Websocket.
Definition: websocket.h:72
const char ** optional_headers
A NULL terminated list of any optional headers that should be added to the HTTP request.
Definition: websocket.h:86
const char * host
Host of the Websocket server when doing HTTP handshakes.
Definition: websocket.h:69
uint8_t * tmp_buf
User supplied buffer where HTTP connection data is stored.
Definition: websocket.h:102
websocket_connect_cb_t cb
User supplied callback function to call when a connection is established.
Definition: websocket.h:91
http_header_cb_t optional_headers_cb
User supplied callback function to call when optional headers need to be sent.
Definition: websocket.h:80