Searched refs:dhcp_config (Results 1 – 7 of 7) sorted by relevance
/external/autotest/client/cros/ |
D | dhcp_test_base.py | 295 dhcp_config = self.get_interface_ipconfig( 297 if dhcp_config is not None: 304 logging.debug('Got DHCP config: %s', str(dhcp_config)) 306 configured_address = dhcp_config.get(DHCPCD_KEY_ADDRESS) 325 configured_dns_servers = dhcp_config.get(DHCPCD_KEY_NAMESERVERS) 334 configured_domain_name = dhcp_config.get(DHCPCD_KEY_DOMAIN_NAME) 342 configured_host_name = dhcp_config.get(DHCPCD_KEY_ACCEPTED_HOSTNAME) 351 configured_search_list = dhcp_config.get(DHCPCD_KEY_SEARCH_DOMAIN_LIST) 368 configured_router = dhcp_config.get(DHCPCD_KEY_GATEWAY)
|
/external/dnsmasq/src/ |
D | dnsmasq.h | 440 struct dhcp_config { struct 450 struct dhcp_config* next; argument 603 struct dhcp_config* dhcp_conf; 757 int config_has_mac(struct dhcp_config* config, unsigned char* hwaddr, int len, int type); 758 struct dhcp_config* find_config(struct dhcp_config* configs, struct dhcp_context* context, 761 void dhcp_update_configs(struct dhcp_config* configs); 763 struct dhcp_config* config_find_by_address(struct dhcp_config* configs, struct in_addr addr);
|
D | dhcp.c | 377 struct dhcp_config* config_find_by_address(struct dhcp_config* configs, struct in_addr addr) { in config_find_by_address() 378 struct dhcp_config* config; in config_find_by_address() 497 static int is_addr_in_context(struct dhcp_context* context, struct dhcp_config* config) { in is_addr_in_context() 507 int config_has_mac(struct dhcp_config* config, unsigned char* hwaddr, int len, int type) { in config_has_mac() 519 struct dhcp_config* find_config(struct dhcp_config* configs, struct dhcp_context* context, in find_config() 523 struct dhcp_config *config, *candidate; in find_config() 572 struct dhcp_config *configs, *cp; in check_dhcp_hosts() 597 void dhcp_update_configs(struct dhcp_config* configs) { in dhcp_update_configs() 605 struct dhcp_config* config; in dhcp_update_configs()
|
D | rfc2131.c | 87 static unsigned int calc_time(struct dhcp_context* context, struct dhcp_config* config, 133 struct dhcp_config* config; in dhcp_reply() 517 struct dhcp_config* new = in dhcp_reply() 934 struct dhcp_config* addr_config; in dhcp_reply() 1186 static unsigned int calc_time(struct dhcp_context* context, struct dhcp_config* config, in calc_time()
|
D | lease.c | 141 struct dhcp_config* config; in lease_update_from_configs()
|
D | option.c | 1575 struct dhcp_config* new; in one_opt() 1578 new = opt_malloc(sizeof(struct dhcp_config)); in one_opt() 2376 struct dhcp_config *configs, *cp, **up; in reread_dhcp()
|
/external/autotest/client/site_tests/network_DhcpNak/ |
D | network_DhcpNak.py | 216 dhcp_config = self.get_interface_ipconfig( 218 if dhcp_config is None: 220 if dhcp_config[dhcp_test_base.DHCPCD_KEY_ADDRESS] != self.intended_ip:
|