Home
last modified time | relevance | path

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

/external/dnsmasq/src/
Dcache.c183 else if (crecp->flags & (F_DHCP | F_CONFIG)) in cache_get_name()
226 if (!(crecp->flags & (F_HOSTS | F_DHCP))) { in cache_scan_free()
234 if (crecp->flags & (F_HOSTS | F_DHCP)) return 0; in cache_scan_free()
253 if (!(crecp->flags & (F_HOSTS | F_DHCP))) { in cache_scan_free()
257 } else if (!(crecp->flags & (F_HOSTS | F_DHCP)) && in cache_scan_free()
426 if (crecp->flags & (F_HOSTS | F_DHCP)) { in cache_find_by_name()
457 if (!(crecp->flags & (F_HOSTS | F_DHCP))) { in cache_find_by_name()
498 if (crecp->flags & (F_HOSTS | F_DHCP)) { in cache_find_by_addr()
509 if (!(crecp->flags & (F_HOSTS | F_DHCP))) { in cache_find_by_addr()
726 } else if (!(cache->flags & F_DHCP)) { in cache_reload()
[all …]
Drfc1035.c780 (crecp->flags & (F_HOSTS | F_DHCP))) in check_for_local_domain()
931 if (crecp->flags & (F_IMMORTAL | F_DHCP)) return daemon->local_ttl; in crec_ttl()
1061 if (qtype == T_ANY && !(crecp->flags & (F_HOSTS | F_DHCP))) continue; in answer_request()
1068 } else if ((crecp->flags & (F_HOSTS | F_DHCP)) || !sec_reqd) { in answer_request()
1070 if (!(crecp->flags & (F_HOSTS | F_DHCP))) auth = 0; in answer_request()
1164 if (qtype == T_ANY && !(crecp->flags & (F_HOSTS | F_DHCP))) break; in answer_request()
1185 } else if ((crecp->flags & (F_HOSTS | F_DHCP)) || !sec_reqd) { in answer_request()
1193 if (!(crecp->flags & (F_HOSTS | F_DHCP))) auth = 0; in answer_request()
1229 cache_find_by_name(NULL, name, now, F_HOSTS | F_DHCP)) { in answer_request()
Ddnsmasq.h278 #define F_DHCP 16 macro