Home
last modified time | relevance | path

Searched refs:maxudp (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/mpl/bind/dist/lib/dns/
H A Dpeer.c71 uint16_t maxudp; /* transmit size */
373 ACCESS_OPTION(maxudp, SERVER_MAXUDP_BIT, uint16_t, maxudp) in dns_peer_getbogus()
70 uint16_t maxudp; /* transmit size */ global() member
823 dns_peer_setmaxudp(dns_peer_t * peer,uint16_t maxudp) dns_peer_setmaxudp() argument
837 dns_peer_getmaxudp(dns_peer_t * peer,uint16_t * maxudp) dns_peer_getmaxudp() argument
H A Dview.c
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
H A Dpeer.h89 uint16_t maxudp; /* transmit size */ member
233 dns_peer_setmaxudp(dns_peer_t *peer, uint16_t maxudp);
236 dns_peer_getmaxudp(dns_peer_t *peer, uint16_t *maxudp);
H A Dview.h175 uint16_t maxudp; member
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dpeer.c778 dns_peer_setmaxudp(dns_peer_t *peer, uint16_t maxudp) { in dns_peer_setmaxudp() argument
785 peer->maxudp = maxudp; in dns_peer_setmaxudp()
792 dns_peer_getmaxudp(dns_peer_t *peer, uint16_t *maxudp) { in dns_peer_getmaxudp() argument
794 REQUIRE(maxudp != NULL); in dns_peer_getmaxudp()
797 *maxudp = peer->maxudp; in dns_peer_getmaxudp()
H A Dview.c226 view->maxudp = 0; in dns_view_create()
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/
H A Dudp.c381 uint32_t maxudp; in udp_recv_cb() local
409 maxudp = atomic_load(&sock->mgr->maxudp); in udp_recv_cb()
410 if ((maxudp != 0 && (uint32_t)nrecv > maxudp)) { in udp_recv_cb()
501 uint32_t maxudp = atomic_load(&sock->mgr->maxudp); in isc__nm_udp_send() local
514 if (maxudp != 0 && region->length > maxudp) { in isc__nm_udp_send()
H A Dnetmgr.c300 atomic_init(&mgr->maxudp, 0); in isc__netmgr_create()
621 isc_nm_maxudp(isc_nm_t *mgr, uint32_t maxudp) { in isc_nm_maxudp() argument
624 atomic_store(&mgr->maxudp, maxudp); in isc_nm_maxudp()
H A Dnetmgr-int.h668 atomic_uint_fast32_t maxudp; member
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/
H A Dudp.c483 uint32_t maxudp; in isc__nm_async_udplisten()
509 * bigger than 'maxudp' bytes for testing purposes. in isc__nm_async_udplisten()
511 maxudp = atomic_load_relaxed(&sock->worker->netmgr->maxudp); in isc__nm_async_udplisten()
512 if (maxudp != 0 && (uint32_t)nrecv > maxudp) { in isc__nm_async_udplisten()
673 uint32_t maxudp; in udp_recv_cb()
682 maxudp = atomic_load(&worker->netmgr->maxudp); in udp_recv_cb()
687 * 'maxudp' byte
570 uint32_t maxudp; udp_recv_cb() local
696 uint32_t maxudp = atomic_load(&sock->mgr->maxudp); isc__nm_udp_send() local
[all...]
H A Dnetmgr.c185 atomic_init(&netmgr->maxudp, 0); in isc__nm_in_netthread()
306 isc_nm_maxudp(isc_nm_t *mgr, uint32_t maxudp) { in isc__netmgr_create()
309 atomic_store_relaxed(&mgr->maxudp, maxudp); in isc__netmgr_create()
571 isc_nm_maxudp(isc_nm_t * mgr,uint32_t maxudp) isc_nm_maxudp() argument
H A Dnetmgr-int.h342 atomic_uint_fast32_t maxudp;
790 atomic_uint_fast32_t maxudp; global() member
/netbsd-src/external/mpl/bind/dist/lib/dns/include/dns/
H A Dpeer.h188 dns_peer_setmaxudp(dns_peer_t *peer, uint16_t maxudp);
191 dns_peer_getmaxudp(dns_peer_t *peer, uint16_t *maxudp);
H A Dview.h169 uint16_t maxudp;
178 uint16_t maxudp; global() member
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dnetmgr.h451 isc_nm_maxudp(isc_nm_t *mgr, uint32_t maxudp);
H A Dsocket.h882 isc_socketmgr_maxudp(isc_socketmgr_t *mgr, unsigned int maxudp);
/netbsd-src/external/mpl/bind/dist/lib/isc/include/isc/
H A Dnetmgr.h592 isc_nm_maxudp(isc_nm_t *mgr, uint32_t maxudp);
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/unix/
H A Dsocket.c390 size_t maxudp; member
1615 if (sock->manager->maxudp != 0 && in doio_recv()
1616 cc > (int)sock->manager->maxudp) in doio_recv()
1690 if (sock->type == isc_sockettype_udp && sock->manager->maxudp != 0 && in doio_send()
1691 write_count > sock->manager->maxudp) in doio_send()
3640 isc_socketmgr_maxudp(isc_socketmgr_t *manager, unsigned int maxudp) { in isc_socketmgr_maxudp() argument
3643 manager->maxudp = maxudp; in isc_socketmgr_maxudp()
3897 manager->maxudp = 0; in isc_socketmgr_create2()
/netbsd-src/external/mpl/bind/dist/lib/ns/
H A Dclient.c2424 uint16_t udpsize = client->view->maxudp;