Home | History | Annotate | Download | only in openssh

Lines Matching defs:port

429 	{ "port", sPort, SSHCFG_GLOBAL },
594 add_listen_addr(ServerOptions *options, char *addr, int port)
602 if (port == 0)
606 add_one_listen_addr(options, addr, port);
610 add_one_listen_addr(ServerOptions *options, char *addr, int port)
620 snprintf(strport, sizeof strport, "%d", port);
714 int result = 1, attributes = 0, port;
811 if ((port = a2port(arg)) == -1) {
820 /* TODO support port lists */
821 if (port == ci->lport)
824 ci->laddress, port, line);
896 int cmdline = 0, *intptr, value, value2, n, port;
955 fatal("%s line %d: missing port number.",
959 fatal("%s line %d: Badly formatted port number.",
1006 fatal("%s line %d: bad address:port usage",
1010 port = 0;
1011 else if ((port = a2port(arg)) <= 0)
1012 fatal("%s line %d: bad port number", filename, linenum);
1014 add_listen_addr(options, p, port);
1609 if (arg == NULL || ((port = permitopen_port(arg)) < 0))
1610 port number in "
1614 channel_add_adm_permitted_opens(p, port);
1846 fprintf(stderr, "Invalid port '%s' in test mode"
2085 char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL;
2089 printf("port %d\n", o->ports[i]);
2093 /* ListenAddress must be after Port */
2096 sizeof(addr), port, sizeof(port),
2103 printf("listenaddress [%s]:%s\n", addr, port);
2105 printf("listenaddress %s:%s\n", addr, port);