hostport          803 src/simh/sim_sock.c SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags)
hostport          812 src/simh/sim_sock.c r = sim_parse_addr (hostport, host, sizeof(host), NULL, port, sizeof(port), NULL, NULL);
hostport          895 src/simh/sim_sock.c            (const char *sourcehostport, const char *hostport, const char *default_host,
hostport          904 src/simh/sim_sock.c if (sim_parse_addr (hostport, host, sizeof(host), default_host, port, sizeof(port), default_port, NULL))
hostport          103 src/simh/sim_sock.h            (const char *hostport, int *parse_status, int opt_flags);
hostport          104 src/simh/sim_sock.h # define sim_master_sock(hostport, parse_status) \
hostport          105 src/simh/sim_sock.h     sim_master_sock_ex(hostport, parse_status, ((sim_switches & SWMASK ('U')) ? SIM_SOCK_OPT_REUSEADDR : 0))
hostport          107 src/simh/sim_sock.h            (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags);
hostport          108 src/simh/sim_sock.h # define sim_connect_sock(hostport, default_host, default_port) \
hostport          109 src/simh/sim_sock.h     sim_connect_sock_ex(NULL, hostport, default_host, default_port, SIM_SOCK_OPT_NONBLOCK)
hostport         2172 src/simh/sim_tmxr.c      logfiletmpl[CBUFSIZE], buffered[CBUFSIZE], hostport[CBUFSIZE*2],
hostport         2349 src/simh/sim_tmxr.c             (void)memset (hostport, '\0', sizeof(hostport));
hostport         2350 src/simh/sim_tmxr.c             strncpy (hostport, destination, sizeof(hostport));
hostport         2351 src/simh/sim_tmxr.c             if ((eptr = strchr (hostport, ';')))
hostport         2366 src/simh/sim_tmxr.c             sock = sim_connect_sock_ex (NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) |
hostport         2372 src/simh/sim_tmxr.c                 return sim_messagef (SCPE_ARG, "Invalid destination: %s\r\n", hostport);
hostport         2575 src/simh/sim_tmxr.c                 sock = sim_connect_sock_ex (datagram ? listen : NULL, hostport, "localhost", NULL,
hostport         2581 src/simh/sim_tmxr.c                     lp->destination = (char *)malloc(1+strlen(hostport));
hostport         2594 src/simh/sim_tmxr.c                     (void)strcpy (lp->destination, hostport);
hostport         2624 src/simh/sim_tmxr.c                                          datagram ? "<->" : "", hostport);
hostport         2765 src/simh/sim_tmxr.c                 sock = sim_connect_sock_ex (datagram ? listen : NULL, hostport, "localhost", NULL,
hostport         2769 src/simh/sim_tmxr.c                     lp->destination = (char *)malloc(1+strlen(hostport));
hostport         2782 src/simh/sim_tmxr.c                     (void)strcpy (lp->destination, hostport);
hostport         2808 src/simh/sim_tmxr.c                                          datagram ? "<->" : "", hostport);