diff options
author | xengineering <me@xengineering.eu> | 2025-03-21 22:33:41 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-21 22:33:41 +0100 |
commit | e042129eddeb06c9272a6544c67f9222c347ab10 (patch) | |
tree | 6fdd4e337485ef08961d3145479621ffd4a53184 /fw/src/http.c | |
parent | 58e8dd56e233f482dc0dbe0cb8f56ef3bab7b998 (diff) | |
download | iot-contact-e042129eddeb06c9272a6544c67f9222c347ab10.tar iot-contact-e042129eddeb06c9272a6544c67f9222c347ab10.tar.zst iot-contact-e042129eddeb06c9272a6544c67f9222c347ab10.zip |
fw: ws: Add WebSocket interface
The primary interface for this firmware was so far HTTP. This protocol
is not suitable for small and bidirectional messages which are
time-critical.
If something like this needs to be implemented with HTTP the best
approach is likely long-polling which at least makes it possible for the
server / the firmware to send data to the client / user as reaction to
an event like a closed door sensor.
TCP would fix this issue and is a good choice. Nevertheless web clients
are not allowed to open TCP connections for security purposes.
Thus the WebSocket protocol was created to fill this gap.
To not duplicate the any effort the WebSocket API should be used for
small, time-critical messages for all clients (one with TCP support like
CLI tools as well as web clients).
HTTP is still kept to provide a web page but also for functionality
where HTTP is more suitable like firmware uploads.
Diffstat (limited to 'fw/src/http.c')
-rw-r--r-- | fw/src/http.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fw/src/http.c b/fw/src/http.c index 96a70fe..b9a76ba 100644 --- a/fw/src/http.c +++ b/fw/src/http.c @@ -13,6 +13,8 @@ #include <zephyr/net/http/service.h> #include <zephyr/net/http/status.h> +#include "ws.h" + LOG_MODULE_REGISTER(http); @@ -59,11 +61,24 @@ static struct http_resource_detail_dynamic favicon_resource_detail = { .user_data = NULL, }; +static uint8_t websocket_read_buffer[1024]; + +struct http_resource_detail_websocket websocket_resource_detail = { + .common = { + .type = HTTP_RESOURCE_TYPE_WEBSOCKET, + .bitmask_of_supported_http_methods = BIT(HTTP_GET), + }, + .cb = ws_upgrade_handler, + .data_buffer = websocket_read_buffer, + .data_buffer_len = sizeof(websocket_read_buffer), +}; + static uint16_t http_port = 80; HTTP_SERVICE_DEFINE(http_service, NULL, &http_port, 1, 10, NULL, NULL); HTTP_RESOURCE_DEFINE(index_resource, http_service, "/", &index_resource_detail); +HTTP_RESOURCE_DEFINE(websocket_resource, http_service, "/", &websocket_resource_detail); HTTP_RESOURCE_DEFINE(favicon_resource, http_service, "/favicon.ico", &favicon_resource_detail); int init_http_server(void) { |