Class: IPSocket

Inherits:
BasicSocket show all
Defined in:
socket.c,
socket.c

Overview

IPSocket is the parent of TCPSocket and UDPSocket and implements functionality common to them.

A number of APIs in IPSocket, Socket, and their descendants return an address as an array. The members of that array are:

  • address family: A string like “AF_INET” or “AF_INET6” if it is one of the commonly used families, the string “unknown:#” (where ‘#’ is the address family number) if it is not one of the common ones. The strings map to the Socket::AF_* constants.

  • port: The port number.

  • name: Either the canonical name from looking the address up in the DNS, or the address in presentation format

  • address: The address in presentation format (a dotted decimal string for IPv4, a hex string for IPv6).

The address and port can be used directly to create sockets and to bind or connect them to the address.

Direct Known Subclasses

TCPSocket, UDPSocket

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BasicSocket

#close_read, #close_write, do_not_reverse_lookup, do_not_reverse_lookup=, for_fd, #getpeername, #getsockname, #getsockopt, #recv, #recv_nonblock, #send, #setsockopt, #shutdown

Class Method Details

.getaddressObject



1720
1721
1722
# File 'socket.c', line 1720

static VALUE
ip_s_getaddress(obj, host)
VALUE obj, host;

Instance Method Details

#addrObject



1681
1682
1683
# File 'socket.c', line 1681

static VALUE
ip_addr(sock)
VALUE sock;

#peeraddrObject



1696
1697
1698
# File 'socket.c', line 1696

static VALUE
ip_peeraddr(sock)
VALUE sock;

#recvfromObject



1711
1712
1713
# File 'socket.c', line 1711

static VALUE
ip_recvfrom(argc, argv, sock)
int argc;