HomeSort by: relevance | last modified time | path
    Searched refs:lhost (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
iruserok.c 62 __icheckhost(unsigned raddr, const char *lhost)
69 if (isdigit((unsigned char)*lhost)
70 && (long)(laddr = inet_addr(lhost)) != -1)
74 if ((hp = gethostbyname(lhost)) == NULL)
  /src/external/bsd/openpam/dist/lib/libpam/
pam_get_authtok.c 77 const void *lhost, *rhost; local
91 r = pam_get_item(pamh, PAM_HOST, &lhost);
92 if (r == PAM_SUCCESS && lhost != NULL) {
93 if (strcmp(rhost, lhost) != 0)
  /src/crypto/external/bsd/openssh/dist/
hostfile.c 443 char *hashed_host = NULL, *lhost; local
445 lhost = xstrdup(host);
446 lowercase(lhost);
449 if ((hashed_host = host_hash(lhost, NULL, 0)) == NULL) {
451 free(lhost);
457 if ((r = sshbuf_putf(entry, "%s,%s ", lhost, ip)) != 0)
460 if ((r = sshbuf_putf(entry, "%s ", lhost)) != 0)
464 free(lhost);
mux.c 1864 const char *lhost, *chost; local
1875 lhost = fwd->listen_path;
1877 lhost = "";
1879 lhost = "*";
1881 lhost = fwd->listen_host;
1895 (r = sshbuf_put_cstring(m, lhost)) != 0 ||
channels.c 4172 const char *lhost, u_short lport, int cport,
4177 const char *addr = channel_fwd_bind_addr(ssh, lhost, NULL, 1, fwd_opts);
4265 char *lhost; local
4279 lhost = xstrdup(fwd->listen_host);
4280 lowercase(lhost);
4281 ret = match_pattern(lhost, allowed_open->listen_host);
4282 free(lhost);
  /src/lib/libc/net/
rcmd.c 920 __icheckhost(const struct sockaddr *raddr, socklen_t salen, const char *lhost)
928 _DIAGASSERT(lhost != NULL);
940 error = getaddrinfo(lhost, "0", &hints, &res);

Completed in 28 milliseconds