Home
last modified time | relevance | path

Searched refs:ext_dhcp_clients (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/docs/
Difupdown_design.txt12 static const struct dhcp_client_t ext_dhcp_clients[] = {
23 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) {
24 if (executable_exists(ext_dhcp_clients[i].name))
25 return execute(ext_dhcp_clients[i].stopcmd, ifd, exec);
/busybox-1.35.0/networking/
Difupdown.c630 static const struct dhcp_client_t ext_dhcp_clients[] = { variable
664 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) { in dhcp_up()
665 if (executable_exists(ext_dhcp_clients[i].name)) in dhcp_up()
666 return execute(ext_dhcp_clients[i].startcmd, ifd, exec); in dhcp_up()
701 for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) { in dhcp_down()
702 if (executable_exists(ext_dhcp_clients[i].name)) { in dhcp_down()
703 result = execute(ext_dhcp_clients[i].stopcmd, ifd, exec); in dhcp_down()