Home
last modified time | relevance | path

Searched refs:websocket_send_msg (Results 1 – 6 of 6) sorted by relevance

/Zephyr-Core-3.5.0/include/zephyr/net/
Dwebsocket.h150 int websocket_send_msg(int ws_sock, const uint8_t *payload, size_t payload_len,
/Zephyr-Core-3.5.0/subsys/net/lib/mqtt/
Dmqtt_transport_websocket.c96 ret = websocket_send_msg(client->transport.websocket.sock, in mqtt_client_websocket_write()
125 ret = websocket_send_msg(client->transport.websocket.sock, in mqtt_client_websocket_write_msg()
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/
Dwebsocket.rst55 ret = websocket_send_msg(ws_sock, buf_to_send, buf_len,
62 is supported. In order to send BINARY data, the :c:func:`websocket_send_msg()`
/Zephyr-Core-3.5.0/tests/net/socket/websocket/src/
Dmain.c391 ret = websocket_send_msg(fd, lorem_ipsum, test_msg_len, in ZTEST()
414 ret = websocket_send_msg(fd, lorem_ipsum, test_msg_len, in ZTEST()
437 ret = websocket_send_msg(fd, NULL, test_msg_len, WEBSOCKET_OPCODE_PING, in ZTEST()
/Zephyr-Core-3.5.0/subsys/net/lib/websocket/
Dwebsocket.c422 ret = websocket_send_msg(ctx->sock, NULL, 0, WEBSOCKET_OPCODE_CLOSE, in websocket_interal_disconnect()
621 int websocket_send_msg(int ws_sock, const uint8_t *payload, size_t payload_len, in websocket_send_msg() function
1043 ret = websocket_send_msg(ctx->sock, buf, buf_len, in websocket_send()
/Zephyr-Core-3.5.0/samples/net/sockets/websocket_client/src/
Dmain.c178 return websocket_send_msg(sock, buf, len, WEBSOCKET_OPCODE_DATA_TEXT, in sendall_with_ws_api()