/osnet-11/usr/src/tools/onbld/Checks/ |
H A D | __init__.py | 45 import socket namespace 52 if socket.gethostbyname("sunweb.central.sun.com."):
|
H A D | DbLookups.py | 40 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 D | ldap_cto.c | 30 #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 D | socket.c | 39 #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 D | Socket.pm | 63 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 D | udp.c | 73 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 D | tcp.c | 184 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 D | util.py | 32 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 D | chip_amd.c | 123 * 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 D | adt_token.c | 46 #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 D | XSUB.h | 522 # define socket PerlSock_socket macro
|