hostport 790 src/simh/sim_sock.c SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags) hostport 799 src/simh/sim_sock.c r = sim_parse_addr (hostport, host, sizeof(host), NULL, port, sizeof(port), NULL, NULL); hostport 881 src/simh/sim_sock.c SOCKET sim_connect_sock_ex (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags) hostport 889 src/simh/sim_sock.c if (sim_parse_addr (hostport, host, sizeof(host), default_host, port, sizeof(port), default_port, NULL)) hostport 94 src/simh/sim_sock.h SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags); hostport 95 src/simh/sim_sock.h # define sim_master_sock(hostport, parse_status) sim_master_sock_ex(hostport, parse_status, ((sim_switches & SWMASK ('U')) ? SIM_SOCK_OPT_REUSEADDR : 0)) hostport 96 src/simh/sim_sock.h SOCKET sim_connect_sock_ex (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags); hostport 97 src/simh/sim_sock.h # define sim_connect_sock(hostport, default_host, default_port) sim_connect_sock_ex(NULL, hostport, default_host, default_port, SIM_SOCK_OPT_NONBLOCK) hostport 2091 src/simh/sim_tmxr.c logfiletmpl[CBUFSIZE], buffered[CBUFSIZE], hostport[CBUFSIZE*2], hostport 2268 src/simh/sim_tmxr.c memset (hostport, '\0', sizeof(hostport)); hostport 2269 src/simh/sim_tmxr.c strncpy (hostport, destination, sizeof(hostport)); hostport 2270 src/simh/sim_tmxr.c if ((eptr = strchr (hostport, ';'))) hostport 2285 src/simh/sim_tmxr.c sock = sim_connect_sock_ex (NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) | hostport 2291 src/simh/sim_tmxr.c return sim_messagef (SCPE_ARG, "Invalid destination: %s\n", hostport); hostport 2494 src/simh/sim_tmxr.c sock = sim_connect_sock_ex (datagram ? listen : NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) | hostport 2499 src/simh/sim_tmxr.c lp->destination = (char *)malloc(1+strlen(hostport)); hostport 2512 src/simh/sim_tmxr.c strcpy (lp->destination, hostport); hostport 2540 src/simh/sim_tmxr.c return sim_messagef (SCPE_ARG, "Can't open %s socket on %s%s%s\n", datagram ? "Datagram" : "Stream", datagram ? listen : "", datagram ? "<->" : "", hostport); hostport 2681 src/simh/sim_tmxr.c sock = sim_connect_sock_ex (datagram ? listen : NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) | (packet ? SIM_SOCK_OPT_NODELAY : 0)); hostport 2684 src/simh/sim_tmxr.c lp->destination = (char *)malloc(1+strlen(hostport)); hostport 2697 src/simh/sim_tmxr.c strcpy (lp->destination, hostport); hostport 2721 src/simh/sim_tmxr.c return sim_messagef (SCPE_ARG, "Can't open %s socket on %s%s%s\n", datagram ? "Datagram" : "Stream", datagram ? listen : "", datagram ? "<->" : "", hostport);