Skip to content

Commit f9ecbd7

Browse files
committed
Fixed compilation error per issue #344
1 parent 8d84ebe commit f9ecbd7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

addons/websocket/nx_websocket_client.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,13 @@ UINT _nx_websocket_client_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_TCP_SOCKE
302302
UINT _nxe_websocket_client_secure_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_SECURE_TLS_SESSION *tls_session,
303303
UCHAR *host, UINT host_length,
304304
UCHAR *uri_path, UINT uri_path_length,
305-
UCHAR *protocol, UINT protocol_length,UINT wait_option);
305+
UCHAR *protocol, UINT protocol_length,
306+
UCHAR *bearer, UINT bearer_length, UINT wait_option);
306307
UINT _nx_websocket_client_secure_connect(NX_WEBSOCKET_CLIENT *client_ptr, NX_SECURE_TLS_SESSION *tls_session,
307308
UCHAR *host, UINT host_length,
308309
UCHAR *uri_path, UINT uri_path_length,
309-
UCHAR *protocol, UINT protocol_length,UINT wait_option);
310+
UCHAR *protocol, UINT protocol_length,
311+
UCHAR *bearer, UINT bearer_length, UINT wait_option);
310312
#endif /* NX_SECURE_ENABLE */
311313
UINT _nxe_websocket_client_disconnect(NX_WEBSOCKET_CLIENT *client_ptr, UINT wait_option);
312314
UINT _nx_websocket_client_disconnect(NX_WEBSOCKET_CLIENT *client_ptr, UINT wait_option);

0 commit comments

Comments
 (0)