Lines Matching refs:sep
218 char* sep; in StrToPortRange() local
233 sep = strchr (str, '-'); in StrToPortRange()
234 if (sep == NULL) { in StrToPortRange()
325 char *sep = **av; in estimate_redir_addr() local
329 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_addr()
331 sep++; in estimate_redir_addr()
346 char *sep; in setup_redir_addr() local
361 sep = strtok(**av, ","); in setup_redir_addr()
362 while (sep != NULL) { in setup_redir_addr()
365 StrToAddr(sep, &spool->addr); in setup_redir_addr()
370 sep = strtok(NULL, ","); in setup_redir_addr()
387 char *sep = **av; in estimate_redir_port() local
391 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_port()
393 sep++; in estimate_redir_port()
408 char *sep, *protoName, *lsnat = NULL; in setup_redir_port() local
528 sep = strtok(lsnat, ","); in setup_redir_port()
529 while (sep != NULL) { in setup_redir_port()
538 if (strchr (sep, ':')) { in setup_redir_port()
544 StrToAddr(sep, &spool->addr); in setup_redir_port()
548 if (StrToAddrAndPortRange(sep, &spool->addr, in setup_redir_port()
561 sep = strtok(NULL, ","); in setup_redir_port()