|
|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
+ * SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
*
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
*/
|
|
|
@@ -121,8 +121,13 @@ static void sc_ack_send_task(void *pvParameters)
|
|
|
goto _end;
|
|
|
}
|
|
|
|
|
|
- if (setsockopt(send_sock, SOL_SOCKET, SO_BROADCAST | SO_REUSEADDR, &optval, sizeof(int)) < 0) {
|
|
|
- ESP_LOGE(TAG, "setsockopt failed");
|
|
|
+ if (setsockopt(send_sock, SOL_SOCKET, SO_BROADCAST, &optval, sizeof(int)) < 0) {
|
|
|
+ ESP_LOGE(TAG, "setsockopt SO_BROADCAST failed");
|
|
|
+ goto _end;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (setsockopt(send_sock, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(int)) < 0) {
|
|
|
+ ESP_LOGE(TAG, "setsockopt SO_REUSEADDR failed");
|
|
|
goto _end;
|
|
|
}
|
|
|
|