Searched defs:max_bits (Results 1 - 3 of 3) sorted by relevance

/dovecot/src/director/
H A Dmail-host.c220 unsigned int i, j, max_bits, last_bits; local
235 max_bits = 32;
240 max_bits = 128;
245 for (i = 0; i < (max_bits-last_bits)/32; i++) {
/dovecot/src/config/
H A Dconfig-parser.c252 unsigned int ip_count, bits, max_bits; local
282 max_bits = IPADDR_IS_V4(&ips[0]) ? 32 : 128;
284 *bits_r = max_bits;
285 else if (str_to_uint(p, &bits) == 0 && bits <= max_bits)
/dovecot/src/lib/
H A Dnet.c1107 unsigned int bits, max_bits; local
1116 max_bits = IPADDR_BITS(ip_r);
1119 bits = max_bits;
1122 if (str_to_uint(p, &bits) < 0 || bits > max_bits)

Completed in 12 milliseconds