Home | History | Annotate | Download | only in openssh

Lines Matching defs:host

61 	char buf[RBUFLN];/* Must not be larger than host, user, dummy below. */
86 char *host, *user, *cp;
111 /* Host name only. */
115 /* Got both host and user name. */
125 host = hostbuf;
129 /* Process negated host names, or positive netgroups. */
130 if (host[0] == '-') {
132 host++;
133 } else if (host[0] == '+')
134 host++;
142 /* Check for empty host/user names (particularly '+'). */
143 if (!host[0] || !user[0]) {
145 auth_debug_add("Ignoring wild host/user names "
149 /* Verify that host name matches. */
150 if (host[0] == '@') {
151 if (!innetgr(host + 1, hostname, NULL, NULL) &&
152 !innetgr(host + 1, ipaddr, NULL, NULL))
154 } else if (strcasecmp(host, hostname) &&
155 strcmp(host, ipaddr) != 0)
165 /* Found the user and host. */
324 auth_debug_add("Accepted host %s ip %s client_user "