Searched defs:socket (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/tools/onbld/Checks/
H A D__init__.py45 import socket namespace
52 if socket.gethostbyname("sunweb.central.sun.com."):
H A DDbLookups.py40 from socket import socket, AF_INET, SOCK_STREAM namespace
279 # if using a direct socket connection fails for some reason, so we
331 # to establish a direct socket connection and query the webrti server
375 sock = socket(AF_INET, SOCK_STREAM)
385 # keep receiving data from the socket until the
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_cto.c30 #include <sys/socket.h>
41 * Interpose socket(3SOCKET), so that we can set the connect timeout.
42 * Obviously, this will affect every socket in the application. However,
47 socket(int domain, int type, int protocol) { function
54 fptr = (int (*)())dlsym(RTLD_NEXT, "socket");
57 "socket: load error: %s",
/osnet-11/usr/src/lib/libsocket/socket/
H A Dsocket.c39 #include <sys/socket.h>
53 #pragma weak socket = _socket macro
83 * Create a socket endpoint for socket() and socketpair().
143 * but socket() should fail with
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DSocket.pm63 croak 'IO::Socket: Cannot configure a generic socket'
66 croak "IO::Socket: Unsupported socket domain"
69 croak "IO::Socket: Cannot configure socket in domain '$domain'"
76 sub socket { subroutine
77 @_ == 4 or croak 'usage: $sock->socket(DOMAIN, TYPE, PROTOCOL)';
80 socket($sock,$domain,$type,$protocol) or
126 # an already open socket and set errno to EISCONN.
308 IO::Socket - Object interface to socket communications
321 types of socket. Operations which are specified to a socket i
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dudp.c73 grub_net_udp_socket_t socket; local
92 socket = grub_zalloc (sizeof (*socket));
93 if (socket == NULL)
96 socket->out_port = out_port;
97 socket->inf = inf;
98 socket->out_nla = addr;
99 socket->ll_target_addr = ll_target_addr;
100 socket->in_port = in_port++;
101 socket
111 grub_net_send_udp_packet(const grub_net_udp_socket_t socket, struct grub_net_buff *nb) argument
[all...]
H A Dtcp.c184 tcp_send (struct grub_net_buff *nb, grub_net_tcp_socket_t socket) argument
194 tcph->seqnr = grub_cpu_to_be32 (socket->my_cur_seq);
198 socket->my_cur_seq += size;
199 tcph->src = grub_cpu_to_be16 (socket->in_port);
200 tcph->dst = grub_cpu_to_be16 (socket->out_port);
203 &socket->inf->address.addr,
204 &socket->out_nla);
216 if (!socket->unack_last)
217 socket->unack_first = socket
552 grub_net_tcp_socket_t socket; local
676 grub_net_send_tcp_packet(const grub_net_tcp_socket_t socket, struct grub_net_buff *nb, int push) argument
[all...]
/osnet-11/usr/src/lib/rad/pyrad/common/
H A Dutil.py32 import socket namespace
40 # Paths for authenticated/unauthenticated AF_UNIX socket
47 # Make pipes quack enough like a socket to satisfy RecordMarkingSocket
50 """ A class which implements a sufficient amount of the socket.socket
89 # Make a zonesbridge.IO object quack enough like a socket to satisfy
93 """ A class which implements a sufficient amount of the socket.socket
189 ProcessPseudoSocket: a "socket" for a spawned RAD process
225 # Connect to the local rad daemon via the standard unix domain socket
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/chip/common/
H A Dchip_amd.c123 * below each, regardless of actual socket type, processor revision and so on.
649 char *socket; local
657 * the socket 754 package has a single channel.
659 if (topo_prop_get_string(pnode, PGNAME(MCT), "socket",
660 &socket, &err) == 0 && strcmp(socket, "Socket 754") == 0)
665 topo_mod_strfree(mod, socket);
/osnet-11/usr/src/lib/libbsm/common/
H A Dadt_token.c46 #include <sys/socket.h>
968 int socket; local
973 /* The consumer is expected to provide a valid socket. */
974 socket = ((union convert *)p_data)->tfd;
975 if (socket < 0) {
976 DPRINTF((" Socket fd %d\n", socket));
978 adt_write_syslog("adt_to_in_peer no required socket",
986 if (getpeername(socket, sa, &len) == -1) {
996 if (getsockname(socket, sa, &len) == -1) {
1035 adt_write_syslog("adt_to_in_peer invalid socket famil
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A DXSUB.h522 # define socket PerlSock_socket macro

Completed in 36 milliseconds