Lines Matching refs:sep
229 char* sep; in StrToPortRange() local
244 sep = strchr (str, '-'); in StrToPortRange()
245 if (sep == NULL) { in StrToPortRange()
336 char *sep = **av; in estimate_redir_addr() local
340 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_addr()
342 sep++; in estimate_redir_addr()
357 char *sep; in setup_redir_addr() local
372 sep = strtok(**av, ","); in setup_redir_addr()
373 while (sep != NULL) { in setup_redir_addr()
376 StrToAddr(sep, &spool->addr); in setup_redir_addr()
381 sep = strtok(NULL, ","); in setup_redir_addr()
398 char *sep = **av; in estimate_redir_port() local
402 while ((sep = strchr(sep, ',')) != NULL) { in estimate_redir_port()
404 sep++; in estimate_redir_port()
419 char *sep, *protoName, *lsnat = NULL; in setup_redir_port() local
539 sep = strtok(lsnat, ","); in setup_redir_port()
540 while (sep != NULL) { in setup_redir_port()
549 if (strchr (sep, ':')) { in setup_redir_port()
555 StrToAddr(sep, &spool->addr); in setup_redir_port()
559 if (StrToAddrAndPortRange(sep, &spool->addr, in setup_redir_port()
572 sep = strtok(NULL, ","); in setup_redir_port()