HomeSort by relevance Sort by last modified time
    Searched full:autoip (Results 1 - 16 of 16) sorted by null

  /external/syslinux/core/lwip/src/core/ipv4/
autoip.c 3 * AutoIP Automatic LinkLocal IP Configuration
36 * This is a AutoIP implementation for the lwIP TCP/IP stack. It aims to conform
52 * that should be defined in autoip.h.
73 #include "lwip/autoip.h"
94 (netif->autoip?netif->autoip->tried_llipaddr:0))
98 * Macro that generates the initial IP address to be tried by AUTOIP.
134 /** Set a statically allocated struct autoip to work with.
137 * @param netif the netif for which to set the struct autoip
141 autoip_set_struct(struct netif *netif, struct autoip *autoip
265 struct autoip *autoip = netif->autoip; local
295 struct autoip *autoip = netif->autoip; local
343 struct autoip *autoip = netif->autoip; local
    [all...]
ip.c 55 #include "lwip/autoip.h"
354 if ((netif->autoip != NULL) &&
355 ip_addr_cmp(&current_iphdr_dest, &(netif->autoip->llipaddr))) {
  /external/syslinux/core/lwip/src/include/ipv4/lwip/
autoip.h 4 * AutoIP Automatic LinkLocal IP Configuration
36 * This is a AutoIP implementation for the lwIP TCP/IP stack. It aims to conform
59 /* AutoIP Timing */
75 /* AutoIP client states */
81 struct autoip struct
84 u8_t state; /* current AutoIP state machine state */
95 /** Set a struct autoip allocated by the application to work with */
96 void autoip_set_struct(struct netif *netif, struct autoip *autoip);
98 /** Start AutoIP client *
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
netif.h 49 struct autoip;
67 * by dhcp/autoip when an address has been assigned.
174 /** the AutoIP client state information for this netif */
175 struct autoip *autoip; member in struct:netif
netifapi.h 38 #include "lwip/autoip.h"
dhcp.h 173 /** AUTOIP cooperatation flags */
opt.h 670 ---------- AUTOIP options ----------
674 * LWIP_AUTOIP==1: Enable AUTOIP module.
681 * LWIP_DHCP_AUTOIP_COOP==1: Allow DHCP and AUTOIP to be both enabled on
690 * that should be sent before falling back on AUTOIP. This can be set
691 * as low as 1 to get an AutoIP address very quickly, but you should
693 * AutoIP.
    [all...]
  /external/syslinux/core/lwip/
UPGRADING 108 * added autoip_set_struct() and dhcp_set_struct() to let autoip and dhcp work
135 * Some improvements for AutoIP (don't route/forward link-local addresses, don't break
README 27 * AUTOIP (for IPv4, conform with RFC 3927)
CHANGELOG 68 * ip_addr.h, etharp.h/.c, autoip.c: Create overridable macros for copying
144 * dhcp.c/.h, autoip.c/.h: task #10139 (Prefer statically allocated
145 memory): added autoip_set_struct() and dhcp_set_struct() to let autoip
322 * etharp.c: Fixed bug #31722: IP packets sent with an AutoIP source addr
349 * dhcp.c: Once again fixed #30038: DHCP/AutoIP cooperation failed when
350 replugging the network cable after an AutoIP address was assigned.
405 * autoip.c: Fixed bug #30039: AutoIP does not reuse previous addresses
408 * dhcp.c: Fixed bug #30038: dhcp_network_changed doesn't reset AUTOIP coop
458 * netif.c, ipv4/ip.c: task #10241 (AutoIP: don't break existing connection
    [all...]
  /external/syslinux/core/lwip/src/core/
init.c 54 #include "lwip/autoip.h"
133 #error "If you want to use DHCP/AUTOIP cooperation mode, you have to define LWIP_DHCP=1 and LWIP_AUTOIP=1 in your lwipopts.h"
139 #error "If you want to use AUTOIP, you have to define LWIP_ARP=1 in your lwipopts.h"
netif.c 57 #include "lwip/autoip.h"
154 /* netif not under AutoIP control by default */
155 netif->autoip = NULL;
525 if (netif->autoip) {
timers.c 56 #include "lwip/autoip.h"
dhcp.c 81 #include "lwip/autoip.h"
    [all...]
  /external/syslinux/core/lwip/src/netif/
etharp.c 56 #include "lwip/autoip.h"
    [all...]
undiif.c 92 #error "AUTOIP not supported"
    [all...]

Completed in 353 milliseconds