default_host      132 src/dps8/udplib.c int sim_parse_addr (const char * cptr, char * host, size_t hostlen, const char * default_host,
default_host      567 src/dps8/udplib.c         (const char *cptr, char *host, size_t host_len, const char *default_host,
default_host      593 src/dps8/udplib.c     hostp = (char *)default_host;                       /* host is defaulted if provided */
default_host      491 src/simh/sim_sock.c         (const char *cptr, char *host, size_t host_len, const char *default_host,
default_host      505 src/simh/sim_sock.c     if (((default_host == NULL) || (*default_host == 0)) || ((default_port == NULL) || (*default_port == 0)))
default_host      509 src/simh/sim_sock.c     if ((strlen(default_host) >= host_len) || (strlen(default_port) >= port_len))
default_host      511 src/simh/sim_sock.c     strcpy (host, default_host);
default_host      531 src/simh/sim_sock.c     hostp = (const char *)default_host;                 /* host is defaulted if provided */
default_host      566 src/simh/sim_sock.c             if (('\0' != hostp[0]) || (default_host == NULL))
default_host      569 src/simh/sim_sock.c                 if (strlen(default_host) >= host_len)
default_host      572 src/simh/sim_sock.c                     strcpy (host, default_host);
default_host      575 src/simh/sim_sock.c         if (default_host) {
default_host      576 src/simh/sim_sock.c             if (strlen(default_host) >= host_len)
default_host      579 src/simh/sim_sock.c                 strcpy (host, default_host);
default_host      657 src/simh/sim_sock.c         (const char *cptr, char *host, size_t hostlen, const char *default_host,
default_host      672 src/simh/sim_sock.c     return sim_parse_addr (hostp+1, host, hostlen, default_host, port, port_len, default_port, NULL);
default_host      674 src/simh/sim_sock.c return sim_parse_addr (cptr, host, hostlen, default_host, port, port_len, default_port, NULL);
default_host      889 src/simh/sim_sock.c            (const char *sourcehostport, const char *hostport, const char *default_host,
default_host      898 src/simh/sim_sock.c if (sim_parse_addr (hostport, host, sizeof(host), default_host, port, sizeof(port), default_port, NULL))
default_host       87 src/simh/sim_sock.h         (const char *cptr, char *host, size_t hostlen, const char *default_host,
default_host       91 src/simh/sim_sock.h         (const char *cptr, char *host, size_t hostlen, const char *default_host,
default_host      103 src/simh/sim_sock.h            (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags);
default_host      104 src/simh/sim_sock.h # define sim_connect_sock(hostport, default_host, default_port) \
default_host      105 src/simh/sim_sock.h     sim_connect_sock_ex(NULL, hostport, default_host, default_port, SIM_SOCK_OPT_NONBLOCK)