Home
last modified time | relevance | path

Searched refs:dhcp_interface_startup_hook (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/mpl/dhcp/dist/common/
H A Ddiscover.c59 isc_result_t (*dhcp_interface_startup_hook) (struct interface_info *); variable
1318 if (ip && dhcp_interface_startup_hook)
1319 return (*dhcp_interface_startup_hook) (ip);
1324 if (!ip && dhcp_interface_startup_hook)
1325 return (*dhcp_interface_startup_hook) (ip);
/netbsd-src/external/mpl/dhcp/dist/includes/
H A Ddhcpd.h2864 extern isc_result_t (*dhcp_interface_startup_hook) (struct interface_info *);
/netbsd-src/external/mpl/dhcp/dist/client/
H A Ddhclient.c174 dhcp_interface_startup_hook = dhclient_interface_startup_hook; in setup()