Home
last modified time | relevance | path

Searched refs:cport (Results 1 – 4 of 4) sorted by relevance

/external/openssh/
Dmux.c652 u_int lport, cport; in process_mux_open_fwd() local
660 buffer_get_int_ret(&cport, m) != 0 || in process_mux_open_fwd()
662 (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) { in process_mux_open_fwd()
682 fwd.connect_port = cport; in process_mux_open_fwd()
820 u_int lport, cport; in process_mux_close_fwd() local
826 buffer_get_int_ret(&cport, m) != 0 || in process_mux_close_fwd()
828 (cport != (u_int)PORT_STREAMLOCAL && cport > 65535)) { in process_mux_close_fwd()
849 fwd.connect_port = cport; in process_mux_close_fwd()
929 u_int cport, i, j; in process_mux_stdio_fwd() local
936 buffer_get_int_ret(&cport, m) != 0) { in process_mux_stdio_fwd()
[all …]
Dchannels.c3068 int cport, struct ForwardOptions *fwd_opts) argument
3080 if (cport == CHANNEL_CANCEL_PORT_STATIC) {
3085 if (c->host_port != cport)
3129 channel_cancel_lport_listener(struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts) argument
3134 return channel_cancel_lport_listener_tcpip(fwd->listen_host, fwd->listen_port, cport, fwd_opts);
/external/libvncserver/x11vnc/
Dsslhelper.c3230 int sock = -1, listen = -1, cport, csock, vsock; in accept_openssl() local
3364 cport = find_free_port(20000, 22000); in accept_openssl()
3365 if (! cport && ipv6_listen) { in accept_openssl()
3367 cport = find_free_port6(20000, 22000); in accept_openssl()
3368 rfbLog("SSL: accept_openssl: IPv6 port: %d\n", cport); in accept_openssl()
3370 if (! cport) { in accept_openssl()
3378 if (db) fprintf(stderr, "accept_openssl: cport: %d\n", cport); in accept_openssl()
3380 csock = listen_tcp(cport, htonl(INADDR_LOOPBACK), 1); in accept_openssl()
3384 cport); in accept_openssl()
3527 vncsock = connect_tcp("127.0.0.1", cport); in accept_openssl()
[all …]
Dconnections.c333 int cport = get_remote_port(cl->sock); in client_match() local
334 if (cport != port) { in client_match()