Lines Matching refs:portptr
4879 char *portptr; in parse_proxy() local
4932 portptr = proxyptr; in parse_proxy()
4954 portptr = ptr; in parse_proxy()
4962 prox_portno = strchr(portptr, ':'); in parse_proxy()
5337 char *portptr; in parse_remote_port() local
5350 portptr = strchr(conn->host.name, ']'); in parse_remote_port()
5351 if(portptr) { in parse_remote_port()
5352 *portptr++ = '\0'; /* zero terminate, killing the bracket */ in parse_remote_port()
5353 if(':' != *portptr) in parse_remote_port()
5354 portptr = NULL; /* no port number available */ in parse_remote_port()
5368 portptr = strrchr(conn->host.name, ':'); in parse_remote_port()
5374 if(portptr) in parse_remote_port()
5375 *portptr = '\0'; /* cut off the name there anyway - if there was a port in parse_remote_port()
5409 else if(portptr) { in parse_remote_port()
5415 port=strtol(portptr+1, &rest, 10); /* Port number must be decimal */ in parse_remote_port()
5423 else if(rest != &portptr[1]) { in parse_remote_port()
5424 *portptr = '\0'; /* cut off the name there */ in parse_remote_port()
5431 *portptr = '\0'; in parse_remote_port()
5557 char *portptr; in parse_connect_to_host_port() local
5573 portptr = hostptr; in parse_connect_to_host_port()
5595 portptr = ptr; in parse_connect_to_host_port()
5603 host_portno = strchr(portptr, ':'); in parse_connect_to_host_port()