Lines Matching refs:port
95 /* This is the concatenation of host and port with ":" in
100 uint16_t port;
111 uint16_t port;
402 * Connects to the host |host| and port |port|. This function returns
405 static int connect_to(const char *host, uint16_t port) {
411 snprintf(service, sizeof(service), "%u", port);
518 req->port = uri->port;
547 fd = connect_to(req.host, req.port);
665 res->port = 443;
668 /* port */
670 int port = 0;
677 port *= 10;
678 port += uri[i] - '0';
679 if (port > 65535) {
686 if (port == 0) {
690 res->port = (uint16_t)port;