Bump websockets submodule (#13776)
* update mqtt websockets submodule and reflect API changes
Timotej S committed
Oct 6, 2022 at 16:56 UTC
0dfa82ec8e2072a3be07b67e7f3f234d045b54bf
3 files changed
+3
-3
aclk/aclk.c
+1
-1
@@ -513,7 +513,7 @@ static int aclk_attempt_to_connect(mqtt_wss_client client)
513
continue;
514
}
515
516
- struct mqtt_wss_proxy proxy_conf = { .host = NULL, .port = 0, .type = MQTT_WSS_DIRECT };
516
+ struct mqtt_wss_proxy proxy_conf = { .host = NULL, .port = 0, .username = NULL, .password = NULL, .type = MQTT_WSS_DIRECT };
517
aclk_set_proxy((char**)&proxy_conf.host, &proxy_conf.port, &proxy_conf.type);
518
519
struct mqtt_connect_params mqtt_conn_params = {
aclk/aclk_otp.c
+1
-1
@@ -13,7 +13,7 @@ static int aclk_https_request(https_req_t *request, https_req_response_t *respon
13
int rc;
14
// wrapper for ACLK only which loads ACLK specific proxy settings
15
// then only calls https_request
16
- struct mqtt_wss_proxy proxy_conf = { .host = NULL, .port = 0, .type = MQTT_WSS_DIRECT };
16
+ struct mqtt_wss_proxy proxy_conf = { .host = NULL, .port = 0, .username = NULL, .password = NULL, .type = MQTT_WSS_DIRECT };
17
aclk_set_proxy((char**)&proxy_conf.host, &proxy_conf.port, &proxy_conf.type);
18
19
if (proxy_conf.type == MQTT_WSS_PROXY_HTTP) {
mqtt_websockets
+1
-1
@@ -1 +1 @@
1
-Subproject commit 0ccbce11b82fd5cfc6c9b6f0ec4228c8717813cd
1
+Subproject commit 3c9b62f2dc2dd319469d977fc06cd934951f3a72