hostport 791 src/simh/sim_sock.c SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags) hostport 800 src/simh/sim_sock.c r = sim_parse_addr (hostport, host, sizeof(host), NULL, port, sizeof(port), NULL, NULL); hostport 882 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 890 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 2185 src/simh/sim_tmxr.c logfiletmpl[CBUFSIZE], buffered[CBUFSIZE], hostport[CBUFSIZE*2], hostport 2362 src/simh/sim_tmxr.c memset (hostport, '\0', sizeof(hostport)); hostport 2363 src/simh/sim_tmxr.c strncpy (hostport, destination, sizeof(hostport)); hostport 2364 src/simh/sim_tmxr.c if ((eptr = strchr (hostport, ';'))) hostport 2379 src/simh/sim_tmxr.c sock = sim_connect_sock_ex (NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) | hostport 2385 src/simh/sim_tmxr.c return sim_messagef (SCPE_ARG, "Invalid destination: %s\n", hostport); hostport 2588 src/simh/sim_tmxr.c sock = sim_connect_sock_ex (datagram ? listen : NULL, hostport, "localhost", NULL, (datagram ? SIM_SOCK_OPT_DATAGRAM : 0) | hostport 2593 src/simh/sim_tmxr.c lp->destination = (char *)malloc(1+strlen(hostport)); hostport 2606 src/simh/sim_tmxr.c (void)strcpy (lp->destination, hostport); hostport 2634 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 2775 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 2778 src/simh/sim_tmxr.c lp->destination = (char *)malloc(1+strlen(hostport)); hostport 2791 src/simh/sim_tmxr.c (void)strcpy (lp->destination, hostport); hostport 2815 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);