Home
last modified time | relevance | path

Searched refs:SOF_REUSEADDR (Results 1 – 10 of 10) sorted by relevance

/third_party/lwip/test/unit/udp/
Dtest_udp.c234 ip_set_option(pcb1, SOF_REUSEADDR); in START_TEST()
235 ip_set_option(pcb2, SOF_REUSEADDR); in START_TEST()
236 ip_set_option(pcb_any, SOF_REUSEADDR); in START_TEST()
/third_party/lwip/src/include/lwip/
Dip.h126 #define SOF_REUSEADDR 0x04U /* allow local address reuse */ macro
131 #define SOF_INHERITED (SOF_REUSEADDR|SOF_KEEPALIVE)
/third_party/lwip/
D0017-support-REUSEPOR-option.patch19 return SOF_REUSEADDR;
D0050-lwip-reuse-ip-port.patch62 if (ip_get_option(pcb, SOF_REUSEADDR)) {
63 /* Since SOF_REUSEADDR allows reusing a local address before the pcb's usage
D0053-cleancode-improve-lwipopts.h-readability.patch327 return SOF_REUSEADDR;
1389 #define SOF_REUSEADDR 0x02U /* allow local address reuse */
1393 #define SOF_REUSEADDR 0x04U /* allow local address reuse */
1400 #define SOF_INHERITED (SOF_REUSEADDR|SOF_KEEPALIVE)
D0002-adapt-lstack.patch3952 +#define SOF_REUSEADDR 0x02U /* allow local address reuse */
3956 #define SOF_REUSEADDR 0x04U /* allow local address reuse */
3962 #define SOF_INHERITED (SOF_REUSEADDR|SOF_KEEPALIVE)
DCHANGELOG1648 SOF_REUSEADDR set, allow binding to endpoint in TIME_WAIT
/third_party/lwip/src/core/
Dudp.c396 if (ip_get_option(pcb, SOF_REUSEADDR) &&
1044 if (!ip_get_option(pcb, SOF_REUSEADDR) ||
1045 !ip_get_option(ipcb, SOF_REUSEADDR))
Dtcp.c850 if (ip_get_option(pcb, SOF_REUSEADDR)) {
885 if (!ip_get_option(pcb, SOF_REUSEADDR) ||
886 !ip_get_option(cpcb, SOF_REUSEADDR))
1030 if (ip_get_option(pcb, SOF_REUSEADDR)) {
1301 if (ip_get_option(pcb, SOF_REUSEADDR)) {
/third_party/lwip/src/api/
Dsockets.c2949 return SOF_REUSEADDR; in lwip_sockopt_to_ipopt()