opt_flags         779 src/simh/sim_sock.c static SOCKET sim_create_sock (int af, int opt_flags)
opt_flags         784 src/simh/sim_sock.c newsock = socket (af, ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM), 0);/* create socket */
opt_flags         803 src/simh/sim_sock.c SOCKET sim_master_sock_ex (const char *hostport, int *parse_status, int opt_flags)
opt_flags         867 src/simh/sim_sock.c if (opt_flags & SIM_SOCK_OPT_REUSEADDR) {
opt_flags         883 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) {
opt_flags         896 src/simh/sim_sock.c             const char *default_port, int opt_flags)
opt_flags         909 src/simh/sim_sock.c hints.ai_protocol = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? IPPROTO_UDP : IPPROTO_TCP);
opt_flags         910 src/simh/sim_sock.c hints.ai_socktype = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM);
opt_flags         924 src/simh/sim_sock.c     hints.ai_protocol = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? IPPROTO_UDP : IPPROTO_TCP);
opt_flags         925 src/simh/sim_sock.c     hints.ai_socktype = ((opt_flags & SIM_SOCK_OPT_DATAGRAM) ? SOCK_DGRAM : SOCK_STREAM);
opt_flags         931 src/simh/sim_sock.c     newsock = sim_create_sock (result->ai_family, opt_flags & SIM_SOCK_OPT_DATAGRAM);/* create socket */
opt_flags         948 src/simh/sim_sock.c     newsock = sim_create_sock (result->ai_family, opt_flags & SIM_SOCK_OPT_DATAGRAM);/* create socket */
opt_flags         955 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) {
opt_flags         962 src/simh/sim_sock.c if ((!(opt_flags & SIM_SOCK_OPT_DATAGRAM)) && (opt_flags & SIM_SOCK_OPT_NODELAY)) {
opt_flags         969 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_DATAGRAM)) {
opt_flags         977 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) {
opt_flags         985 src/simh/sim_sock.c     if (opt_flags & SIM_SOCK_OPT_BLOCKING) {
opt_flags        1005 src/simh/sim_sock.c SOCKET sim_accept_conn_ex (SOCKET master, char **connectaddr, int opt_flags)
opt_flags        1041 src/simh/sim_sock.c if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) {
opt_flags        1047 src/simh/sim_sock.c if ((opt_flags & SIM_SOCK_OPT_NODELAY)) {
opt_flags         103 src/simh/sim_sock.h            (const char *hostport, int *parse_status, int opt_flags);
opt_flags         107 src/simh/sim_sock.h            (const char *sourcehostport, const char *hostport, const char *default_host, const char *default_port, int opt_flags);
opt_flags         111 src/simh/sim_sock.h            (SOCKET master, char **connectaddr, int opt_flags);