Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Ddns.c127 #if DNS_TABLE_SIZE > 255
128 #error DNS_TABLE_SIZE must fit into an u8_t
140 #define DNS_MAX_REQUESTS DNS_TABLE_SIZE
149 #define DNS_MAX_REQUESTS DNS_TABLE_SIZE
304 static struct dns_table_entry dns_table[DNS_TABLE_SIZE];
626 for (i = 0; i < DNS_TABLE_SIZE; ++i) { in dns_lookup()
1075 for (i = 0; i < DNS_TABLE_SIZE; i++) { in dns_create_txid()
1118 LWIP_ASSERT("array index out of bounds", i < DNS_TABLE_SIZE); in dns_check_entry()
1194 for (i = 0; i < DNS_TABLE_SIZE; ++i) { in dns_check_entries()
1261 for (i = 0; i < DNS_TABLE_SIZE; i++) { in dns_recv()
[all …]
/third_party/lwip/src/include/lwip/
Dopt.h1099 #if !defined DNS_TABLE_SIZE || defined __DOXYGEN__
1100 #define DNS_TABLE_SIZE 4 macro