Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/tcpd/
H A Dtcpdchk.c199 char sv_list[BUFLEN]; /* becomes list of daemons */ local
211 while (xgets(sv_list, sizeof(sv_list), fp)) {
212 if (sv_list[strlen(sv_list) - 1] != '\n') {
216 if (sv_list[0] == '#' || sv_list[strspn(sv_list, " \t\r\n")] == 0)
218 if ((cl_list = split_at(skip_ipv6_addrs(sv_list), ':')) == 0) {
229 print_list("daemons: ", sv_list);
230 check_daemon_list(sv_list);
/illumos-gate/usr/src/lib/libwrap/
H A Dhosts_access.c143 char sv_list[BUFLEN]; /* becomes list of daemons */ local
159 while (match == NO && xgets(sv_list, sizeof(sv_list), fp) != 0) {
160 if (sv_list[strlen(sv_list) - 1] != '\n') {
164 if (sv_list[0] == '#' || sv_list[strspn(sv_list, " \t\r\n")] == 0)
166 if ((cl_list = split_at(skip_ipv6_addrs(sv_list), ':')) == 0) {
171 match = list_match(sv_list, request, server_match)
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/inetadm/
H A Dinetadm.c129 char **plist, uu_list_t **sv_list) in add_proto_list() argument
142 if ((*sv_list = uu_list_create(sv_pool, NULL, 0)) == NULL) in add_proto_list()
155 (void) uu_list_insert_after(*sv_list, NULL, sv_el); in add_proto_list()
164 remove_proto_list(scf_transaction_entry_t *entry, uu_list_t *sv_list) in remove_proto_list() argument
171 while ((sv_el = uu_list_teardown(sv_list, &cookie)) != NULL) { in remove_proto_list()
176 uu_list_destroy(sv_list); in remove_proto_list()
244 uu_list_t *sv_list; in modify_prop() local
272 &sv_list); in modify_prop()
301 remove_proto_list(ent, sv_list); in modify_prop()