Searched refs:protocol (Results 1 - 25 of 171) sorted by relevance

1234567

/osnet-11/usr/src/lib/libsocket/socket/
H A Dsocket.c56 _socket(int family, int type, int protocol) argument
58 return (_socket_create(family, type, protocol, SOV_DEFAULT));
65 _socket_bsd(int family, int type, int protocol) argument
67 return (_socket_create(family, type, protocol, SOV_SOCKBSD));
71 _socket_svr4(int family, int type, int protocol) argument
73 return (_socket_create(family, type, protocol, SOV_SOCKSTREAM));
77 __xnet_socket(int family, int type, int protocol) argument
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, in argument
[all...]
H A Dsocketpair.c59 _socketpair(int family, int type, int protocol, int sv[2]) argument
61 return (_socketpair_create(family, type, protocol, sv, SOV_DEFAULT));
68 _socketpair_bsd(int family, int type, int protocol, int sv[2]) argument
70 return (_socketpair_create(family, type, protocol, sv, SOV_SOCKBSD));
74 _socketpair_svr4(int family, int type, int protocol, int sv[2]) argument
76 return (_socketpair_create(family, type, protocol, sv,
81 __xnet_socketpair(int family, int type, int protocol, int sv[2]) argument
83 return (_socketpair_create(family, type, protocol, sv,
88 _socketpair_create(int family, int type, int protocol, int sv[2], int version) argument
97 fd1 = _socket_create(family, type, protocol, versio
[all...]
H A D_soutil.c60 * proto_sw contains protocol entries for which there is a corresponding
62 * desired protocol.
117 * Lookup family/type/protocol in /etc/netconfig.
122 _s_netconfig_path(int family, int type, int protocol, argument
129 net = _s_match_netconf(family, type, protocol, &nethandle);
136 *prototype = protocol;
172 * Match config entry for protocol
/osnet-11/usr/src/lib/libradproto/common/
H A Dllib-lradproto29 #include <protocol.h>
H A Dprotocol.x27 * rad protocol definitions
45 * not. So that we can safely use rpcgen to implement our protocol,
148 * Request/response protocol
151 string protocol<3>; /* Protocol name, "RAD" */
157 string protocol<3>; /* Protocol name, "RAD" */
/osnet-11/usr/src/lib/libradproto/
H A DMakefile45 PROTOCOL_X = common/protocol.x
50 RPCFILES = common/protocol_xdr.c common/protocol.h
78 cd common; $(RPCGEN) -cC -o protocol_xdr.c protocol.x
80 common/protocol.h: $(PROTOCOL_X)
81 cd common; $(RPCGEN) -h -o protocol.h protocol.x
H A DMakefile.com40 GSRCS = $(GOBJECTS:%.o=$(SRCDIR)/%.c) protocol.h protocol.x
/osnet-11/usr/src/lib/nsswitch/ldap/common/
H A Dgetservent.c118 ns_ldap_attr_t *names = NULL, *protocol = NULL; local
124 * getservent_r with multiple protocol values and the entry
132 * getservent_r with single protocol value or multiple values
181 /* Get protocol */
182 protocol = __ns_ldap_getAttrStruct(result->entry, _S_PROTOCOL);
183 if (protocol == NULL || protocol->attrvalue == NULL) {
193 protoval = protocol->attrvalue[cookie->index++];
194 } else if (protocol->value_count > 1 && be->setcalled == 0 &&
200 * it needs to match protocol to
324 char protocol[SEARCHFILTERLEN]; local
380 char protocol[SEARCHFILTERLEN]; local
[all...]
H A Dgetprotoent.c50 char *protocol; member in struct:protocol_alias
81 * But some protocol does have different aliases.
97 get_alias(char *protocol) { argument
101 if (strncmp(protocol, "ip", 2) == 0) {
102 for (i = 0; ip_aliases[i].protocol != NULL; i++) {
103 if (strcmp(protocol, ip_aliases[i].protocol) == 0)
109 for (cp = protocol; *cp; cp++)
112 return (protocol);
115 for (cp = protocol; *c
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dif_arp.h19 uint16_t protocol; member in struct:arprequest
H A Dudp.h13 uint8_t protocol; member in struct:udp_pseudo_hdr
H A Dip.h16 uint8_t protocol; member in struct:iphdr
/osnet-11/usr/src/lib/libc/port/threads/
H A Dpthr_mutex.c45 ap->protocol = PTHREAD_PRIO_NONE;
134 * pthread_mutexattr_setprotocol: sets the protocol attribute.
137 pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, int protocol) argument
143 if (protocol != PTHREAD_PRIO_NONE &&
144 protocol != PTHREAD_PRIO_INHERIT &&
145 protocol != PTHREAD_PRIO_PROTECT)
147 ap->protocol = protocol;
152 * pthread_mutexattr_getprotocol: gets the protocol attribute.
156 pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr, int *protocol) argument
[all...]
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_cto.c47 socket(int domain, int type, int protocol) { argument
63 ret = (*fptr) (domain, type, protocol);
/osnet-11/usr/src/grub/grub2/include/grub/efi/
H A Defi.h29 void *EXPORT_FUNC(grub_efi_locate_protocol) (grub_efi_guid_t *protocol,
33 grub_efi_guid_t *protocol,
37 grub_efi_guid_t *protocol,
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dusbdesc.h47 grub_uint8_t protocol; member in struct:grub_usb_desc_device
79 grub_uint8_t protocol;
93 grub_uint8_t protocol; member in struct:grub_usb_desc_if
/osnet-11/usr/src/lib/libsocket/common/
H A Dllib-lsocket70 int socket(int domain, int type, int protocol);
71 int _socket(int domain, int type, int protocol);
72 int _socket_bsd(int family, int type, int protocol);
73 int __xnet_socket(int family, int type, int protocol);
76 int socketpair(int domain, int type, int protocol, int sv[]);
77 int _socketpair(int domain, int type, int protocol, int *sv);
78 int _socketpair_bsd(int domain, int type, int protocol, int *sv);
79 int __xnet_socketpair(int domain, int type, int protocol, int *sv);
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/sun4vpi/common/
H A Dpi_top.c32 #include <sys/fm/protocol.h>
H A Dpi_mem.c31 #include <sys/fm/protocol.h>
H A Dpi_niu.c31 #include <sys/fm/protocol.h>
/osnet-11/usr/src/lib/libwrap/
H A Drfc931.c49 static FILE *fsocket(domain, type, protocol)
52 int protocol;
57 if ((s = socket(domain, type, protocol)) < 0) {
178 * protocol, not part of the data.
/osnet-11/usr/src/lib/librstp/common/
H A Dstp_bpdu.h66 unsigned char protocol[2]; member in struct:bpdu_header_t
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DTime.pm69 # the time protocol return time in seconds since 1900, convert
123 or not defined, using the protocol as defined in RFC868. The optional
124 argument C<PROTOCOL> should define the protocol to use, either C<tcp> or
131 or not defined, using the protocol as defined in RFC867. The optional
132 argument C<PROTOCOL> should define the protocol to use, either C<tcp> or
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dpmap_clnt.c63 pmap_set(rpcprog_t program, rpcvers_t version, rpcprot_t protocol, argument
71 if ((protocol != IPPROTO_UDP) && (protocol != IPPROTO_TCP))
73 nconf = __rpc_getconfip(protocol == IPPROTO_UDP ? "udp" : "tcp");
129 rpcvers_t version, rpcprot_t protocol)
142 parms.pm_prot = protocol;
128 pmap_getport(struct sockaddr_in *address, rpcprog_t program, rpcvers_t version, rpcprot_t protocol) argument
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_shadow.c47 * appropriate protocol, and pass down the path to the shadow filesystem.
74 const char **protocol, const char **mntopts, char **path)
87 *protocol = MNTTYPE_LOFS;
147 *protocol = MNTTYPE_NFS;
181 *protocol = MNTTYPE_SMBFS;
199 "unknown shadow protocol"));
209 const char *protocol; local
216 if (zfs_shadow_parse(hdl, shadow, &protocol, &mntopts, &path) != 0)
73 zfs_shadow_parse(libzfs_handle_t *hdl, const char *shadow, const char **protocol, const char **mntopts, char **path) argument

Completed in 88 milliseconds

1234567