Lines Matching refs:port
138 as->src.port = curlx_ultous(srcport);
139 as->dst.port = curlx_ultous(dstport);
284 as->src.port,
288 as->dst.port,
457 (srcport == as->src.port) &&
492 * Invalid host name, port number will result in the specific alternative
527 /* [protocol]="[host][:port]" */
574 unsigned long port = 0;
577 /* a port number */
578 port = strtoul(p, &end_ptr, 10);
581 if(!port || port > USHRT_MAX || end_ptr == p || *end_ptr != '\"') {
582 infof(data, "Unknown alt-svc port number, ignoring.");
586 dstport = curlx_ultous(port);
706 (as->src.port == srcport) &&