Searched defs:proxy_netif (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_dhcp6ds.c63 dhcp6ds_init(struct netif *proxy_netif) argument
69 LWIP_ASSERT1(proxy_netif != NULL);
70 LWIP_ASSERT1(proxy_netif->hwaddr_len == 6); /* ethernet */
72 pxaddr = netif_ip6_addr(proxy_netif, 0); /* link local */
81 if (ip6_addr_ispreferred(netif_ip6_addr_state(proxy_netif, i))
82 && !ip6_addr_islinklocal(netif_ip6_addr(proxy_netif, i)))
84 pxaddr_nonlocal = netif_ip6_addr(proxy_netif, i);
134 memcpy(&dhcp6ds_serverid[8], proxy_netif->hwaddr, 6);
H A Dproxy_rtadvd.c74 proxy_rtadvd_start(struct netif *proxy_netif) argument
86 proxy_rtadvd_fill_payload(proxy_netif, ndefaults > 0);
98 raw_recv_ip6(rtadvd_pcb, rtadvd_recv, proxy_netif);
100 sys_timeout(3 * 1000, proxy_rtadvd_timer, proxy_netif);
114 struct netif *proxy_netif = (struct netif *)arg; local
117 sys_untimeout(proxy_rtadvd_timer, proxy_netif);
118 proxy_rtadvd_timer(proxy_netif); /* sends and re-arms */
125 struct netif *proxy_netif = (struct netif *)arg; local
136 proxy_rtadvd_fill_payload(proxy_netif, ndefaults > 0);
139 proxy_rtadvd_send_multicast(proxy_netif);
165 struct netif *proxy_netif = (struct netif *)arg; local
285 proxy_rtadvd_send_multicast(struct netif *proxy_netif) argument
327 proxy_rtadvd_fill_payload(struct netif *proxy_netif, int is_default) argument
[all...]
H A Dproxy.c70 proxy_init(struct netif *proxy_netif, struct proxy_options *opts) argument
75 LWIP_UNUSED_ARG(proxy_netif);
81 g_proxy_netif = proxy_netif;
84 proxy_rtadvd_start(proxy_netif);
93 dhcp6ds_init(proxy_netif);
97 tftpd_init(proxy_netif, opts->tftp_root);
111 pxdns_init(proxy_netif);
113 pxping_init(proxy_netif, opts->icmpsock4, opts->icmpsock6);
H A Dproxy_tftpd.c146 tftpd_init(struct netif *proxy_netif, const char *tftproot) argument
170 error = udp_bind(tftpd.pcb, &proxy_netif->ip_addr, TFTP_SERVER_PORT);
H A Dpxdns.c206 pxdns_init(struct netif *proxy_netif) argument
211 LWIP_UNUSED_ARG(proxy_netif);

Completed in 339 milliseconds