Searched refs:max_request_udp (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/heimdal/kdc/ |
H A D | config.c | 201 max_request_tcp = max_request_udp = parse_bytes(max_request_str, NULL); in configure() 210 max_request_tcp = max_request_udp = parse_bytes(p, NULL); in configure() 266 if(max_request_udp == 0) in configure() 267 max_request_udp = 64 * 1024; in configure()
|
H A D | kdc_locl.h | 49 extern size_t max_request_udp;
|
H A D | connect.c | 47 size_t max_request_udp; variable 473 buf = malloc(max_request_udp); in handle_udp() 475 kdc_log(context, config, 0, "Failed to allocate %lu bytes", (unsigned long)max_request_udp); in handle_udp() 480 n = recvfrom(d->s, buf, max_request_udp, 0, d->sa, &d->sock_len); in handle_udp() 486 if ((size_t)n == max_request_udp) { in handle_udp()
|