Home
last modified time | relevance | path

Searched refs:websocket (Results 1 – 25 of 25) sorted by relevance

/Zephyr-latest/subsys/net/lib/mqtt/
Dmqtt_transport_websocket.c55 if (client->transport.websocket.config.url == NULL) { in mqtt_client_websocket_connect()
56 client->transport.websocket.config.url = "/mqtt"; in mqtt_client_websocket_connect()
59 if (client->transport.websocket.config.host == NULL) { in mqtt_client_websocket_connect()
60 client->transport.websocket.config.host = "localhost"; in mqtt_client_websocket_connect()
69 client->transport.websocket.config.optional_headers = extra_headers; in mqtt_client_websocket_connect()
71 client->transport.websocket.sock = websocket_connect( in mqtt_client_websocket_connect()
73 &client->transport.websocket.config, in mqtt_client_websocket_connect()
74 client->transport.websocket.timeout, in mqtt_client_websocket_connect()
76 if (client->transport.websocket.sock < 0) { in mqtt_client_websocket_connect()
78 client->transport.websocket.sock); in mqtt_client_websocket_connect()
[all …]
/Zephyr-latest/samples/net/sockets/websocket_client/
DREADME.rst1 .. zephyr:code-sample:: sockets-websocket-client
3 :relevant-api: bsd_sockets websocket
28 Build websocket-client sample application like this:
57 Running websocket-server in Linux Host
60 You can run this ``websocket-client`` sample application in QEMU
61 and run the ``zephyr-websocket-server.py`` (from net-tools) on a Linux host.
71 $ ./zephyr-websocket-server.py
79 Run ``websocket-client`` application in QEMU:
89 Note that ``zephyr-websocket-server.py`` or ``websocketd`` must be running in
90 the Linux host terminal window before you start the ``websocket-client``
[all …]
/Zephyr-latest/subsys/logging/backends/
DKconfig.ws10 Send console messages to websocket console.
19 Maximum size of the output string that is sent via websocket.
34 bool "Automatically start websocket backend"
37 When enabled automatically start the websocket backend on
41 backend-str = websocket
/Zephyr-latest/tests/net/socket/websocket/
DCMakeLists.txt5 project(websocket) project
8 ${ZEPHYR_BASE}/subsys/net/lib/websocket)
/Zephyr-latest/samples/net/sockets/http_server/
DKconfig52 bool "Enable websocket service"
56 int "How many websocket connections to serve at the same time"
60 Each websocket connection is served by a thread which needs
64 int "Interval in milliseconds to send network stats over websocket"
DREADME.rst124 import websocket
126 websocket.enableTrace(True)
127 ws = websocket.WebSocket()
/Zephyr-latest/subsys/net/lib/websocket/
DCMakeLists.txt7 websocket.c
/Zephyr-latest/doc/connectivity/networking/api/
Dapis.rst20 websocket.rst
Dwebsocket.rst78 .. doxygengroup:: websocket
/Zephyr-latest/samples/net/mqtt_publisher/src/
Dmain.c348 client->transport.websocket.config.host = SERVER_ADDR; in client_init()
349 client->transport.websocket.config.url = "/mqtt"; in client_init()
350 client->transport.websocket.config.tmp_buf = temp_ws_rx_buf; in client_init()
351 client->transport.websocket.config.tmp_buf_len = in client_init()
353 client->transport.websocket.timeout = 5 * MSEC_PER_SEC; in client_init()
/Zephyr-latest/subsys/net/lib/shell/
Dwebsocket.c81 SHELL_SUBCMD_ADD((net), websocket, NULL,
DCMakeLists.txt38 zephyr_library_sources_ifdef(CONFIG_NET_SHELL_WEBSOCKET_SUPPORTED websocket.c)
/Zephyr-latest/subsys/net/lib/
DCMakeLists.txt37 add_subdirectory_ifdef(CONFIG_WEBSOCKET_CLIENT websocket)
DKconfig20 source "subsys/net/lib/websocket/Kconfig"
/Zephyr-latest/samples/net/sockets/echo_server/
DKconfig94 Enable this flag, if you are interested to enable websocket console.
95 You can use the overlay-ws-console.conf to set websocket options.
/Zephyr-latest/include/zephyr/net/
Dmqtt.h454 } websocket; member
/Zephyr-latest/doc/releases/
Drelease-notes-1.12.rst157 * Minimal server side websocket support.
449 * :github:`6635` - tests/net/websocket/test doesnt build on qemu_xtensa
464 * :github:`6669` - [Coverity CID: 183063] Null pointer dereferences in /tests/net/websocket/src/ser…
469 …:`6675` - [Coverity CID: 183057] Memory - illegal accesses in /subsys/net/lib/websocket/websocket.c
473 …:`6682` - [Coverity CID: 183050] Memory - illegal accesses in /subsys/net/lib/websocket/websocket.c
482 * :github:`6691` - [Coverity CID: 183041] Memory - corruptions in /tests/net/websocket/src/server.c
487 * :github:`6698` - [Coverity CID: 183034] Error handling issues in /tests/net/websocket/src/main.c
489 * :github:`6700` - [Coverity CID: 183032] Error handling issues in /tests/net/websocket/src/main.c
499 * :github:`6779` - websocket API documentation missing
Drelease-notes-2.2.rst850 …2444` - [Coverity CID :207963] Argument cannot be negative in tests/net/socket/websocket/src/main.c
855 * :github:`22438` - [Coverity CID :207973] Out-of-bounds access in tests/net/socket/websocket/src/m…
856 * :github:`22437` - [Coverity CID :207974] Out-of-bounds read in tests/net/socket/websocket/src/mai…
860 * :github:`22433` - [Coverity CID :207980] Untrusted loop bound in tests/net/socket/websocket/src/m…
862 …22430` - [Coverity CID :207985] Argument cannot be negative in subsys/net/lib/websocket/websocket.c
916 * :github:`21989` - websocket: recv_msg always returns full message length on last call
Drelease-notes-2.1.rst556 …:`20513` - [Coverity CID :205621]Memory - illegal accesses in /subsys/net/lib/websocket/websocket.c
561 …overity CID :205634]Code maintainability issues in /samples/net/sockets/websocket\_client/src/main…
Drelease-notes-3.3.rst1149 * Reimplemented websocket receive routine to fix several issues.
1150 * Implemented proper websocket close procedure.
1151 * Fixed a bug where websocket would overwrite the mutex used by underlying TCP
2997 * :github:`53942` - Websocket: No close message on websocket close
3111 * :github:`53129` - Build fails on ESP32 when enabling websocket client API
3239 * :github:`52327` - websocket: websocket_recv_msg breaks when there is no data after header
Drelease-notes-3.0.rst1156 * :github:`40256` - websocket: the size of a websocket payload is limited
Drelease-notes-1.13.rst339 * :github:`9617` - tests/net/websocket/ - passed on QEMUx86 but the target crashed after that
Drelease-notes-3.2.rst842 * Fixed websocket build with :kconfig:option:`CONFIG_POSIX_API`.
/Zephyr-latest/subsys/net/lib/http/
DKconfig196 needed by websocket console are set.
/Zephyr-latest/subsys/shell/backends/
DKconfig.backends594 Note that if you have only one HTTP endpoint for the websocket console,
626 This option is used to configure on which port websocket is going