• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/crypto/openssh/

Lines Matching refs:listen_host

113 /*	XXX - can we use listen_host instead of listen_path? */
117 char *listen_host; /* Remote side should listen address. */
212 static const char *channel_rfwd_bind_host(const char *listen_host);
459 free(perm->listen_host);
525 const char *listen_host, const char *listen_path, int listen_port,
541 (*permp)[n].listen_host = MAYBE_DUP(listen_host);
565 c->self, perm->listen_host, perm->listen_port);
571 channel_rfwd_bind_host(perm->listen_host))) != 0 ||
2717 char *ctype = NULL, *listen_host = NULL;
2808 (r = sshbuf_get_cstring(original, &listen_host, NULL)) != 0 ||
2815 __func__, listen_host, listen_port);
2820 listen_host, NULL, (int)listen_port, downstream);
2821 listen_host = NULL;
2853 free(listen_host);
3366 fwd->listen_host : fwd->connect_host;
3378 addr = channel_fwd_bind_addr(fwd->listen_host, &wildcard,
3633 fwd->listen_host, fwd->listen_port);
3709 fwd->listen_host, fwd->listen_port, cport, fwd_opts);
3738 if (fwd->listen_host == NULL || allowed_open->listen_host == NULL)
3746 lhost = xstrdup(fwd->listen_host);
3748 ret = match_pattern(lhost, allowed_open->listen_host);
3814 channel_rfwd_bind_host(const char *listen_host)
3816 if (listen_host == NULL) {
3818 } else if (*listen_host == '\0' || strcmp(listen_host, "*") == 0) {
3821 return listen_host;
3834 char *host_to_connect, *listen_host, *listen_path;
3853 channel_rfwd_bind_host(fwd->listen_host))) != 0 ||
3864 host_to_connect = listen_host = listen_path = NULL;
3877 if (fwd->listen_host != NULL)
3878 listen_host = xstrdup(fwd->listen_host);
3883 listen_host, listen_path, listen_port, NULL);
3906 * need to translate between the configured-host (listen_host)
3919 if (!translate && allowed_open->listen_host == NULL &&
3923 channel_rfwd_bind_host(allowed_open->listen_host) :
3924 allowed_open->listen_host;
4029 fwd->listen_host,
4061 * Remote forwards set listen_host/port, local forwards set
4307 channel_connect_by_listen_address(struct ssh *ssh, const char *listen_host,
4318 listen_host, listen_port, 1)) {