| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| peer.h | 89 uint16_t maxudp; /* transmit size */ member in struct:dns_peer 233 dns_peer_setmaxudp(dns_peer_t *peer, uint16_t maxudp); 236 dns_peer_getmaxudp(dns_peer_t *peer, uint16_t *maxudp);
|
| view.h | 175 uint16_t maxudp; member in struct:dns_view
|
| /src/external/mpl/bind/dist/lib/isc/netmgr/ |
| udp.c | 483 uint32_t maxudp; local 509 * bigger than 'maxudp' bytes for testing purposes. 511 maxudp = atomic_load_relaxed(&sock->worker->netmgr->maxudp); 512 if (maxudp != 0 && (uint32_t)nrecv > maxudp) { 673 uint32_t maxudp; local 682 maxudp = atomic_load(&worker->netmgr->maxudp); 687 * 'maxudp' bytes, for testing purposes [all...] |
| netmgr-int.h | 342 atomic_uint_fast32_t maxudp; member in struct:isc_nm
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/ |
| udp.c | 381 uint32_t maxudp; local 407 * bigger than 'maxudp' bytes for testing purposes. 409 maxudp = atomic_load(&sock->mgr->maxudp); 410 if ((maxudp != 0 && (uint32_t)nrecv > maxudp)) { 501 uint32_t maxudp = atomic_load(&sock->mgr->maxudp); local 508 * 'maxudp' bytes, for testing purposes. 514 if (maxudp != 0 && region->length > maxudp) [all...] |
| netmgr-int.h | 668 atomic_uint_fast32_t maxudp; member in struct:isc_nm
|
| /src/external/mpl/bind/dist/lib/dns/ |
| peer.c | 71 uint16_t maxudp; /* transmit size */ member in struct:dns_peer 373 ACCESS_OPTION(maxudp, SERVER_MAXUDP_BIT, uint16_t, maxudp)
|
| /src/external/mpl/bind/dist/bin/named/ |
| main.c | 138 static int maxudp = 0; variable 761 maxudp = 512; 763 maxudp = 1460; 764 } else if (!strncmp(option, "maxudp=", 7)) { 765 maxudp = atoi(option + 7); 766 if (maxudp <= 0) { 767 named_main_earlyfatal("bad maxudp"); 1078 isc_nm_maxudp(named_g_netmgr, maxudp);
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| view.h | 169 uint16_t maxudp; member in struct:dns_view
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/unix/ |
| socket.c | 390 size_t maxudp; member in struct:isc_socketmgr 1613 * 'maxudp' bytes. 1615 if (sock->manager->maxudp != 0 && 1616 cc > (int)sock->manager->maxudp) 1690 if (sock->type == isc_sockettype_udp && sock->manager->maxudp != 0 && 1691 write_count > sock->manager->maxudp) 3640 isc_socketmgr_maxudp(isc_socketmgr_t *manager, unsigned int maxudp) { 3643 manager->maxudp = maxudp; 3897 manager->maxudp = 0 [all...] |