Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/auditconfig/
H A Dauditconfig.c2336 char *host_str = NULL; in str2tid() local
2356 if ((host_str = strchr(minor_str, ',')) != NULL) { in str2tid()
2357 *host_str = '\0'; in str2tid()
2358 host_str++; in str2tid()
2371 if (host_str) { in str2tid()
2372 if (strisipaddr(host_str)) { in str2tid()
2373 if (inet_pton(AF_INET, host_str, &ibuf)) { in str2tid()
2376 } else if (inet_pton(AF_INET6, host_str, ibuf6)) { in str2tid()
2384 phe = getipnodebyname((const void *)host_str, in str2tid()
2387 phe = getipnodebyname((const void *)host_str, in str2tid()
/titanic_41/usr/src/cmd/krb5/ldap_util/
H A Dkdb5_ldap_services.c68 …char host_str[MAX_LEN_LIST_ENTRY] = "", proto_str[PROTOCOL_STR_LEN + 1] = "", port_str[PORT_STR_LE… in process_host_list() local
84 strncpy (host_str, host_list[j], hostname_len); in process_host_list()
104 strncpy (host_str, host_list[j], MAX_LEN_LIST_ENTRY - 1); in process_host_list()
146 (strlen(host_str) + strlen(proto_str) + strlen(port_str) + 2 + 1)); in process_host_list()
151 snprintf (host_list[j], strlen(host_str) + strlen(proto_str) + strlen(port_str) + 2 + 1, in process_host_list()
152 "%s#%s#%s", host_str, proto_str, port_str); in process_host_list()