Lines Matching refs:colon
449 char *colon;
457 if ((colon = strchr(arg, ':')) == NULL)
463 * If colon first character, then no local addr.
465 if (colon != arg && option_priority >= prio_local) {
466 *colon = '\0';
480 *colon = ':';
485 * If colon last character, then no remote addr.
487 if (*++colon != '\0' && option_priority >= prio_remote) {
488 if ((remote = inet_addr(colon)) == (u32_t) -1) {
489 if ((hp = gethostbyname(colon)) == NULL) {
490 option_error("unknown host: %s", colon);
495 strlcpy(remote_name, colon, sizeof(remote_name));