Home
last modified time | relevance | path

Searched refs:sv_list (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/tcp_wrappers/
H A Dtcpdchk.c197 char sv_list[BUFLEN]; /* becomes list of daemons */ in parse_table() local
209 while (xgets(sv_list, sizeof(sv_list), fp)) { in parse_table()
210 if (sv_list[strlen(sv_list) - 1] != '\n') { in parse_table()
214 if (sv_list[0] == '#' || sv_list[strspn(sv_list, " \t\r\n")] == 0) in parse_table()
216 if ((cl_list = split_at(sv_list, ':')) == 0) { in parse_table()
227 print_list("daemons: ", sv_list); in parse_table()
228 check_daemon_list(sv_list); in parse_table()
H A Dhosts_access.c147 char sv_list[BUFLEN]; /* becomes list of daemons */ in table_match() local
164 while (match == NO && xgets(sv_list, sizeof(sv_list), fp) != 0) { in table_match()
165 if (sv_list[strlen(sv_list) - 1] != '\n') { in table_match()
170 for (cp = strchr(sv_list, '#'); cp != NULL;) { in table_match()
171 if (cp > sv_list && cp[-1] == '\\') { in table_match()
178 if (sv_list[strspn(sv_list, " \t\r\n")] == 0) in table_match()
180 if ((cl_list = split_at(sv_list, ':')) == 0) { in table_match()
185 match = list_match(sv_list, request, server_match) in table_match()