opt_flags 773 src/simh/sim_sock.c static SOCKET sim_create_sock (int af, int opt_flags) opt_flags 778 src/simh/sim_sock.c newsock = socket (af, ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM), 0);/* create socket */ opt_flags 797 src/simh/sim_sock.c SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags) opt_flags 861 src/simh/sim_sock.c if (opt_flags & SIM_SOCK_OPT_REUSEADDR) { opt_flags 877 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) { opt_flags 890 src/simh/sim_sock.c const char *default_port, int opt_flags) opt_flags 903 src/simh/sim_sock.c hints.ai_protocol = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? IPPROTO_UDP : IPPROTO_TCP); opt_flags 904 src/simh/sim_sock.c hints.ai_socktype = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM); opt_flags 918 src/simh/sim_sock.c hints.ai_protocol = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? IPPROTO_UDP : IPPROTO_TCP); opt_flags 919 src/simh/sim_sock.c hints.ai_socktype = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM); opt_flags 925 src/simh/sim_sock.c newsock = sim_create_sock (result->ai_family, opt_flags & SIM_SOCK_OPT_DATAGRAM);/* create socket */ opt_flags 942 src/simh/sim_sock.c newsock = sim_create_sock (result->ai_family, opt_flags & SIM_SOCK_OPT_DATAGRAM);/* create socket */ opt_flags 949 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) { opt_flags 956 src/simh/sim_sock.c if ((!(opt_flags & SIM_SOCK_OPT_DATAGRAM)) && (opt_flags & SIM_SOCK_OPT_NODELAY)) { opt_flags 963 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_DATAGRAM)) { opt_flags 971 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) { opt_flags 979 src/simh/sim_sock.c if (opt_flags & SIM_SOCK_OPT_BLOCKING) { opt_flags 999 src/simh/sim_sock.c SOCKET sim_accept_conn_ex (SOCKET master, char **connectaddr, int opt_flags) opt_flags 1035 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) { opt_flags 1041 src/simh/sim_sock.c if ((opt_flags & SIM_SOCK_OPT_NODELAY)) { opt_flags 99 src/simh/sim_sock.h (const char *hostport, int *parse_status, int opt_flags); opt_flags 103 src/simh/sim_sock.h (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags); opt_flags 107 src/simh/sim_sock.h (SOCKET master, char **connectaddr, int opt_flags);