Searched defs:net (Results 1 - 5 of 5) sorted by relevance
/dovecot/src/lib/ |
H A D | test-net.c | 4 #include "net.h" 8 const char *net; member in struct:test_net_is_in_network_input 42 test_assert(net_addr2ip(input[i].net, &net_ip) == 0);
|
/dovecot/src/lmtp/ |
H A D | client.c | 292 const char *const *net; local 299 net = t_strsplit_spaces(client->lmtp_set->login_trusted_networks, ", "); 300 for (; *net != NULL; net++) { 301 if (net_parse_range(*net, &net_ip, &bits) < 0) { 303 "Invalid network '%s'", *net);
|
/dovecot/src/lib-master/ |
H A D | master-service-haproxy.c | 626 const char *const *net; local 633 net = t_strsplit_spaces(service->set->haproxy_trusted_networks, ", "); 634 for (; *net != NULL; net++) { 635 if (net_parse_range(*net, &net_ip, &bits) < 0) { 637 "Invalid network '%s'", *net);
|
/dovecot/src/login-common/ |
H A D | client-common.c | 136 const char *const *net; local 143 net = t_strsplit_spaces(client->set->login_trusted_networks, ", "); 144 for (; *net != NULL; net++) { 145 if (net_parse_range(*net, &net_ip, &bits) < 0) { 147 "Invalid network '%s'", *net);
|
/dovecot/src/auth/ |
H A D | auth-request.c | 1755 const char *const *net; local 1760 for (net = t_strsplit_spaces(networks, ", "); *net != NULL; net++) { 1762 "%s: Matching for network %s", name, *net); 1764 if (strcmp(*net, "local") == 0) { 1769 } else if (net_parse_range(*net, &net_ip, &bits) < 0) { 1771 "%s: Invalid network '%s'", name, *net);
|
Completed in 114 milliseconds