uce/site/doc/pages/ws_connection_id.txt
2026-06-16 23:02:45 +00:00

18 lines
425 B
Plaintext

:sig
String ws_connection_id()
:params
return value : connection ID of the current WebSocket client
:see
>websocket
:content
Returns the runtime-generated connection ID of the client whose message is currently being handled.
This ID can be passed to `ws_send_to()` or `ws_close()` to target a single connected client.
:example
String id = ws_connection_id();
print(id == "" ? "(empty outside a WS handler)" : id, "\n");