Lines Matching defs:protocol
56 _socket(int family, int type, int protocol)
58 return (_socket_create(family, type, protocol, SOV_DEFAULT));
65 _socket_bsd(int family, int type, int protocol)
67 return (_socket_create(family, type, protocol, SOV_SOCKBSD));
71 _socket_svr4(int family, int type, int protocol)
73 return (_socket_create(family, type, protocol, SOV_SOCKSTREAM));
77 __xnet_socket(int family, int type, int protocol)
79 return (_socket_create(family, type, protocol, SOV_XPG4_2));
85 * that could be returned due to invalid <family, type, protocol>
93 _socket_create(int family, int type, int protocol, int version)
107 fd = _so_socket(family, type, protocol, NULL, version);
126 if (_s_netconfig_path(family, type, protocol,
131 fd = _so_socket(family, type, protocol, devpath, version);