Lines Matching defs:portptr
512 char *portptr;
518 portptr = strchr(hostname, ']');
519 if(!portptr)
521 portptr++;
523 if(*portptr) {
524 if(*portptr != ':')
528 portptr = NULL;
531 portptr = strchr(hostname, ':');
533 if(portptr) {
536 size_t keep = portptr - hostname;
546 portptr++;
547 if(!*portptr)
550 if(!ISDIGIT(*portptr))
553 port = strtol(portptr, &rest, 10); /* Port number must be decimal */