HomeSort by relevance Sort by last modified time
    Searched refs:SOF_REUSEADDR (Results 1 - 4 of 4) sorted by null

  /external/syslinux/core/lwip/src/include/ipv4/lwip/
ip.h 99 #define SOF_REUSEADDR (u8_t)0x04U /* allow local address reuse */
109 #define SOF_INHERITED (SOF_REUSEADDR|SOF_KEEPALIVE|SOF_LINGER/*|SOF_DEBUG|SOF_DONTROUTE|SOF_OOBINLINE*/)
  /external/syslinux/core/lwip/src/core/
init.c 242 if (SO_REUSEADDR != SOF_REUSEADDR)
243 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: SO_REUSEADDR != SOF_REUSEADDR\n"));
tcp.c 414 if ((pcb->so_options & SOF_REUSEADDR) != 0) {
431 if (((pcb->so_options & SOF_REUSEADDR) == 0) ||
432 ((cpcb->so_options & SOF_REUSEADDR) == 0))
495 if ((pcb->so_options & SOF_REUSEADDR) != 0) {
496 /* Since SOF_REUSEADDR allows reusing a local address before the pcb's usage
684 if ((pcb->so_options & SOF_REUSEADDR) != 0) {
685 /* Since SOF_REUSEADDR allows reusing a local address, we have to make sure
    [all...]
udp.c 281 ((pcb->so_options & SOF_REUSEADDR) != 0)) {
283 if SOF_REUSEADDR is set on the first match */
725 else if (((pcb->so_options & SOF_REUSEADDR) == 0) &&
726 ((ipcb->so_options & SOF_REUSEADDR) == 0)) {
    [all...]

Completed in 197 milliseconds