mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
smartconfig: Fix smartconfig set socket option fail
Closes https://github.com/espressif/esp-idf/issues/8189
This commit is contained in:
parent
03d3c43882
commit
9cf57a86a0
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user