diff options
| author | Frédéric Desbiens <[email protected]> | 2025-10-06 11:30:26 -0400 |
|---|---|---|
| committer | Frédéric Desbiens <[email protected]> | 2025-10-06 11:30:26 -0400 |
| commit | f9ecbd77401e250b7b561ca071c964050167a4ee (patch) | |
| tree | 7a003f67f1cbd3ef48c51a285011f3dc3d7409f1 | |
| parent | 8d84ebe7038e2b6114236c284093910558550492 (diff) | |
Fixed compilation error per issue #344
| -rw-r--r-- | addons/websocket/nx_websocket_client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addons/websocket/nx_websocket_client.h b/addons/websocket/nx_websocket_client.h index bad5c93f..3e9e6f13 100644 --- a/addons/websocket/nx_websocket_client.h +++ b/addons/websocket/nx_websocket_client.h @@ -302,11 +302,13 @@ UINT _nx_websocket_client_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_TCP_SOCKE UINT _nxe_websocket_client_secure_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_SECURE_TLS_SESSION *tls_session, UCHAR *host, UINT host_length, UCHAR *uri_path, UINT uri_path_length, - UCHAR *protocol, UINT protocol_length,UINT wait_option); + UCHAR *protocol, UINT protocol_length, + UCHAR *bearer, UINT bearer_length, UINT wait_option); UINT _nx_websocket_client_secure_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_SECURE_TLS_SESSION *tls_session, UCHAR *host, UINT host_length, UCHAR *uri_path, UINT uri_path_length, - UCHAR *protocol, UINT protocol_length,UINT wait_option); + UCHAR *protocol, UINT protocol_length, + UCHAR *bearer, UINT bearer_length, UINT wait_option); #endif /* NX_SECURE_ENABLE */ UINT _nxe_websocket_client_disconnect(NX_WEBSOCKET_CLIENT *client_ptr, UINT wait_option); UINT _nx_websocket_client_disconnect(NX_WEBSOCKET_CLIENT *client_ptr, UINT wait_option); |
