Searched refs:socket (Results 1 - 25 of 1821) sorted by relevance

1234567891011>>

/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dsocket.c24 #ifndef socket
26 #include <sys/socket.h>
32 return socket(0, 0, 0) < 0;
/macosx-10.9.5/Security-55471.14.18/tlsnke/tlsnketest/
H A Dtlssocket.h15 Attach the TLS socket filter.
17 This makes a socket a TLS socket by attaching the TLS socket filter to that socket.
20 socket
22 int TLSSocket_Attach(int socket);
25 Detach the TLS socket filter.
30 It is not required to use this, as closing the socket would have the same effect.
32 int TLSSocket_Detach(int socket);
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/linux-gnu/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dkext_net.h30 * Support for socket filter kernel extensions
47 struct socket;
52 extern void sflt_initsock(struct socket *so);
53 extern void sflt_termsock(struct socket *so);
54 extern errno_t sflt_attach_internal(struct socket *so, sflt_handle handle);
55 extern void sflt_notify(struct socket *so, sflt_event_t event, void *param);
56 extern int sflt_ioctl(struct socket *so, u_long cmd, caddr_t data);
57 extern int sflt_bind(struct socket *so, const struct sockaddr *nam);
58 extern int sflt_listen(struct socket *so);
59 extern int sflt_accept(struct socket *hea
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/aix5.2.0.0/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/hpux11.11/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.10/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.8/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/solaris2.9/
H A Dcomsoc_sys.h81 #include <sys/socket.h>
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/legacy/
H A Dlisten.c36 #include <sys/socket.h>
45 listen(int socket, int backlog) argument
47 int ret = __listen(socket, backlog);
H A Dgetpeername.c36 #include <sys/socket.h>
45 getpeername(int socket, struct sockaddr * __restrict address, argument
48 int ret = __getpeername(socket, address, address_len);
H A Dgetsockname.c36 #include <sys/socket.h>
45 getsockname(int socket, struct sockaddr * __restrict address, argument
48 int ret = __getsockname(socket, address, address_len);
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dprotosw.h76 #include <sys/socket.h>
85 struct socket;
108 short pr_type; /* socket type used for */
118 (struct mbuf *m, struct socket *so);
122 (struct socket *, struct sockopt *);
142 (struct socket *so, int locktype, void *debug);
144 (struct socket *so, int locktype, void *debug);
146 (struct socket *so, int locktype);
187 * socket filters is only applicable on the original protosw instance.
195 u_int16_t pr_type; /* socket typ
[all...]
H A Dun.h70 /* [XSI] The sa_family_t type shall be defined as described in <sys/socket.h> */
102 struct socket;
105 int uipc_usrreq(struct socket *so, int req, struct mbuf *m,
107 int uipc_ctloutput (struct socket *so, struct sockopt *sopt);
108 int unp_connect2(struct socket *so, struct socket *so2);
113 int unp_lock(struct socket *, int, void *);
114 int unp_unlock(struct socket *, int, void *);
115 lck_mtx_t* unp_getlock(struct socket *, int);
H A Dsocketvar.h145 * Kernel structure per socket.
150 struct socket { struct
152 short so_type; /* generic type, see socket.h */
153 u_int32_t so_options; /* from socket call, see socket.h */
161 * If so_head is 0, socket is not related to an accept.
162 * For head socket so_incomp queues partially completed connections,
167 * and limit on number of queued connections for this socket.
169 struct socket *so_head; /* back pointer to accept socket */
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/include/darwin/
H A Dcomsoc_sys.h82 #include <sys/socket.h>
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/transfer/include/
H A Dsecure.inc5 [option -socketcmd] to force the use of command [cmd tls::socket] to
6 open the socket.
13 # Create a connector with secure socket setup,
14 [vset OBJCREATE] -socketcmd tls::socket ...
/macosx-10.9.5/vim-53/src/
H A Dos_beos.h25 #include <net/socket.h> /* for typedefs and #defines only */
/macosx-10.9.5/ppp-727.90.1/Helpers/sbslauncher/
H A Dsandbox_info.m7 #include <sys/socket.h>
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dflow_divert.h71 void flow_divert_detach(struct socket *so);
72 errno_t flow_divert_token_set(struct socket *so, struct sockopt *sopt);
73 errno_t flow_divert_token_get(struct socket *so, struct sockopt *sopt);
74 errno_t flow_divert_pcb_init(struct socket *so, uint32_t ctl_unit);
75 errno_t flow_divert_check_policy(struct socket *so, proc_t p, boolean_t match_delegate, uint32_t *ctl_unit);
76 errno_t flow_divert_connect_out(struct socket *so, struct sockaddr *to, proc_t p);
77 void flow_divert_so_init(struct socket *so, proc_t p);
78 boolean_t flow_divert_is_dns_service(struct socket *so);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dtcpinterpreter.py4 start socket based minimal readline exec server
6 import sys, socket, os
37 clientsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Examples/NonFunctional/RemotePyInterpreter/
H A Dtcpinterpreter.py4 start socket based minimal readline exec server
6 import sys, socket, os
37 clientsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
/macosx-10.9.5/ruby-104/ruby/lib/webrick/
H A Dhttps.rb43 def parse(socket=nil)
44 if socket.respond_to?(:cert)
45 @server_cert = socket.cert || @config[:SSLCertificate]
46 @client_cert = socket.peer_cert
47 @client_cert_chain = socket.peer_cert_chain
48 @cipher = socket.cipher
50 orig_parse(socket)
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSWindows/
H A DPoll.h32 typedef void ( CALLBACK *mDNSPollSocketCallback )( SOCKET socket, LPWSANETWORKEVENTS event, void *context );
37 mDNSPollRegisterSocket( SOCKET socket, int networkEvents, mDNSPollSocketCallback callback, void *context );
41 mDNSPollUnregisterSocket( SOCKET socket );
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-dnssrv/
H A Dcompare.c27 #include <ac/socket.h>

Completed in 245 milliseconds

1234567891011>>