Lines Matching refs:remote_port
110 int remote_port,
132 protocol4a ? "a" : "", hostname, remote_port);
136 infof(data, "SOCKS4 communication to %s:%d\n", hostname, remote_port);
151 socksreq[2] = (unsigned char)((remote_port >> 8) & 0xff); /* PORT MSB */
152 socksreq[3] = (unsigned char)(remote_port & 0xff); /* PORT LSB */
160 rc = Curl_resolv(conn, hostname, remote_port, &dns);
356 int remote_port,
395 hostname, remote_port);
457 infof(data, "SOCKS5 communication to %s:%d\n", hostname, remote_port);
601 int rc = Curl_resolv(conn, hostname, remote_port, &dns);
664 socksreq[len++] = (unsigned char)((remote_port >> 8) & 0xff); /* PORT MSB */
665 socksreq[len++] = (unsigned char)(remote_port & 0xff); /* PORT LSB */