Merge branch 'bugfix/udp_random_port' into 'release/v3.3'
lw-ip:Bugfix for add random udp port See merge request espressif/esp-idf!7133
This commit is contained in:
commit
64df5e111e
3 changed files with 16 additions and 2 deletions
|
@ -37,6 +37,14 @@ menu "LWIP"
|
||||||
the maximum amount of sockets here. The valid value is from 1
|
the maximum amount of sockets here. The valid value is from 1
|
||||||
to 16.
|
to 16.
|
||||||
|
|
||||||
|
config LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS
|
||||||
|
bool "Randomize the local port for the first"
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS==1: randomize the local port for the first
|
||||||
|
local TCP/UDP pcb (default==0). This can prevent creating predictable port
|
||||||
|
numbers after booting a device.
|
||||||
|
|
||||||
config USE_ONLY_LWIP_SELECT
|
config USE_ONLY_LWIP_SELECT
|
||||||
bool "Support LWIP socket select() only"
|
bool "Support LWIP socket select() only"
|
||||||
default n
|
default n
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 9b9d126b84616d7ff224bea7e2b9f9dfa7573fe9
|
Subproject commit 6a587ae24c6667e537f9f78d774edf3d4453d6f5
|
|
@ -525,6 +525,13 @@
|
||||||
*/
|
*/
|
||||||
#define LWIP_SO_SNDTIMEO 1
|
#define LWIP_SO_SNDTIMEO 1
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS==1: randomize the local port for the first
|
||||||
|
* local TCP/UDP pcb (default==0). This can prevent creating predictable port
|
||||||
|
* numbers after booting a device.
|
||||||
|
*/
|
||||||
|
#define LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS CONFIG_LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LWIP_SO_RCVTIMEO==1: Enable receive timeout for sockets/netconns and
|
* LWIP_SO_RCVTIMEO==1: Enable receive timeout for sockets/netconns and
|
||||||
* SO_RCVTIMEO processing.
|
* SO_RCVTIMEO processing.
|
||||||
|
@ -759,7 +766,6 @@
|
||||||
#define ESP_DNS 1
|
#define ESP_DNS 1
|
||||||
#define ESP_IPV6_AUTOCONFIG 1
|
#define ESP_IPV6_AUTOCONFIG 1
|
||||||
#define ESP_PERF 0
|
#define ESP_PERF 0
|
||||||
#define ESP_RANDOM_TCP_PORT 1
|
|
||||||
#define ESP_IP4_ATON 1
|
#define ESP_IP4_ATON 1
|
||||||
#define ESP_LIGHT_SLEEP 1
|
#define ESP_LIGHT_SLEEP 1
|
||||||
#define ESP_L2_TO_L3_COPY CONFIG_L2_TO_L3_COPY
|
#define ESP_L2_TO_L3_COPY CONFIG_L2_TO_L3_COPY
|
||||||
|
|
Loading…
Reference in a new issue