Class: Socket
| Relationships & Source Files | |
| Namespace Children | |
|
Modules:
| |
|
Classes:
| |
|
Exceptions:
| |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
::BasicSocket,
::IO
|
|
|
Instance Chain:
self,
::BasicSocket,
::IO
|
|
| Inherits: |
BasicSocket
|
| Defined in: | ext/socket/socket.c, ext/socket/constdefs.c, ext/socket/ifaddr.c, ext/socket/lib/socket.rb |
Overview
Class Socket provides access to the underlying operating system socket implementations. It can be used to provide more operating system specific functionality than the protocol-specific socket classes.
The constants defined under Constants are also defined under Socket. For example, AF_INET is usable as well as Constants::AF_INET. See Constants for the list of constants.
What’s a socket?
Sockets are endpoints of a bidirectional communication channel. Sockets can communicate within a process, between processes on the same machine or between different machines. There are many types of socket: ::TCPSocket, ::UDPSocket or ::UNIXSocket for example.
Sockets have their own vocabulary:
domain: The family of protocols:
type: The type of communications between the two endpoints, typically
protocol: Typically zero. This may be used to identify a variant of a protocol.
hostname: The identifier of a network interface:
-
a string (hostname, IPv4 or IPv6 address or
broadcastwhich specifies a broadcast address) -
a zero-length string which specifies INADDR_ANY
-
an integer (interpreted as binary address in host byte order).
Quick start
Many of the classes, such as ::TCPSocket, ::UDPSocket or ::UNIXSocket, ease the use of sockets comparatively to the equivalent C programming interface.
Let’s create an internet socket using the IPv4 protocol in a C-like manner:
require 'socket'
s = Socket.new Socket::AF_INET, Socket::SOCK_STREAM
s.connect Socket.pack_sockaddr_in(80, 'example.com')
You could also use the ::TCPSocket class:
s = TCPSocket.new 'example.com', 80
A simple server might look like this:
require 'socket'
server = TCPServer.new 2000 # Server bound to port 2000
loop do
client = server.accept # Wait for a client to connect
client.puts "Hello !"
client.puts "Time is #{Time.now}"
client.close
end
A simple client may look like this:
require 'socket'
s = TCPSocket.new 'localhost', 2000
while line = s.gets # Read lines from socket
puts line # and print them
end
s.close # close socket when done
Exception Handling
Ruby’s Socket implementation raises exceptions based on the error generated by the system dependent implementation. This is why the methods are documented in a way that isolate Unix-based system exceptions from Windows based exceptions. If more information on a particular exception is needed, please refer to the Unix manual pages or the Windows WinSock reference.
Convenience methods
Although the general way to create socket is .new, there are several methods of socket creation for most cases.
- TCP client socket
-
Socket.tcp, TCPSocket.open
- TCP server socket
-
Socket.tcp_server_loop, TCPServer.open
- UNIX client socket
-
Socket.unix, UNIXSocket.open
- UNIX server socket
-
Socket.unix_server_loop, UNIXServer.open
Documentation by
-
Zach Dennis
-
Sam Roberts
-
Programming Ruby from The Pragmatic Bookshelf.
Much material in this documentation is taken with permission from Programming Ruby from The Pragmatic Bookshelf.
Constant Summary
-
ADDRESS_FAMILIES =
private
# File 'ext/socket/lib/socket.rb', line 608{ ipv6: Socket::AF_INET6, ipv4: Socket::AF_INET }.freeze -
AF_ALG =
# File 'ext/socket/constdefs.c', line 3158
Interface to kernel crypto API
INTEGER2NUM(AF_ALG)
-
AF_APPLETALK =
# File 'ext/socket/constdefs.c', line 2630
AppleTalk protocol
INTEGER2NUM(AF_APPLETALK)
-
AF_ATM =
# File 'ext/socket/constdefs.c', line 2966
Asynchronous Transfer Mode
INTEGER2NUM(AF_ATM)
-
AF_AX25 =
# File 'ext/socket/constdefs.c', line 2606
AX.25protocolINTEGER2NUM(AF_AX25)
-
AF_BLUETOOTH =
# File 'ext/socket/constdefs.c', line 3146
Bluetooth low-level socket protocol
INTEGER2NUM(AF_BLUETOOTH)
-
AF_CAN =
# File 'ext/socket/constdefs.c', line 3122
Controller Area Network automotive bus protocol
INTEGER2NUM(AF_CAN)
-
AF_CCITT =
# File 'ext/socket/constdefs.c', line 2750
CCITT (now ITU-T) protocols
INTEGER2NUM(AF_CCITT)
-
AF_CHAOS =
# File 'ext/socket/constdefs.c', line 2678
MIT CHAOS protocols
INTEGER2NUM(AF_CHAOS)
-
AF_CNT =
# File 'ext/socket/constdefs.c', line 2870
Computer Network Technology
INTEGER2NUM(AF_CNT)
-
AF_COIP =
# File 'ext/socket/constdefs.c', line 2858
Connection-oriented IP
INTEGER2NUM(AF_COIP)
-
AF_DATAKIT =
# File 'ext/socket/constdefs.c', line 2738
Datakit protocol
INTEGER2NUM(AF_DATAKIT)
-
AF_DEC =
# File 'ext/socket/constdefs.c', line 2774
DECnet protocol
INTEGER2NUM(AF_DEC)
-
AF_DECnet =
# File 'ext/socket/constdefs.c', line 2786
DECnet protocol
INTEGER2NUM(AF_DECnet)
-
AF_DLI =
# File 'ext/socket/constdefs.c', line 2798
DEC Direct Data Link Interface protocol
INTEGER2NUM(AF_DLI)
-
AF_E164 =
# File 'ext/socket/constdefs.c', line 3014
CCITT (ITU-T) E.164 recommendation
INTEGER2NUM(AF_E164)
-
AF_ECMA =
# File 'ext/socket/constdefs.c', line 2726
European Computer Manufacturers protocols
INTEGER2NUM(AF_ECMA)
-
AF_HYLINK =
# File 'ext/socket/constdefs.c', line 2822
NSC Hyperchannel protocol
INTEGER2NUM(AF_HYLINK)
-
AF_IB =
# File 'ext/socket/constdefs.c', line 3098
InfiniBand native addressing
INTEGER2NUM(AF_IB)
-
AF_IMPLINK =
# File 'ext/socket/constdefs.c', line 2654
ARPANET IMP protocol
INTEGER2NUM(AF_IMPLINK)
-
AF_INET =
# File 'ext/socket/constdefs.c', line 2566
IPv4 protocol
INTEGER2NUM(AF_INET)
-
AF_INET6 =
# File 'ext/socket/constdefs.c', line 2579
IPv6 protocol
INTEGER2NUM(AF_INET6)
-
AF_IPX =
# File 'ext/socket/constdefs.c', line 2618
IPX protocol
INTEGER2NUM(AF_IPX)
-
AF_ISDN =
# File 'ext/socket/constdefs.c', line 2906
Integrated Services Digital Network
INTEGER2NUM(AF_ISDN)
-
AF_ISO =
# File 'ext/socket/constdefs.c', line 2702
ISO Open Systems Interconnection protocols
INTEGER2NUM(AF_ISO)
-
AF_KCM =
# File 'ext/socket/constdefs.c', line 3182
KCM (kernel connection multiplexor) interface
INTEGER2NUM(AF_KCM)
-
AF_KEY =
# File 'ext/socket/constdefs.c', line 3038
Key management protocol, originally developed for usage with IPsec
INTEGER2NUM(AF_KEY)
-
AF_LAT =
# File 'ext/socket/constdefs.c', line 2810
Local Area Transport protocol
INTEGER2NUM(AF_LAT)
-
AF_LINK =
# File 'ext/socket/constdefs.c', line 2846
Link layer interface
INTEGER2NUM(AF_LINK)
-
AF_LLC =
# File 'ext/socket/constdefs.c', line 3086
Logical link control (IEEE 802.2 LLC) protocol
INTEGER2NUM(AF_LLC)
-
AF_LOCAL =
# File 'ext/socket/constdefs.c', line 2642
Host-internal protocols
INTEGER2NUM(AF_LOCAL)
-
AF_MAX =
# File 'ext/socket/constdefs.c', line 2990
Maximum address family for this platform
INTEGER2NUM(AF_MAX)
-
AF_MPLS =
# File 'ext/socket/constdefs.c', line 3110
Multiprotocol Label Switching
INTEGER2NUM(AF_MPLS)
-
AF_NATM =
# File 'ext/socket/constdefs.c', line 2918
Native ATM access
INTEGER2NUM(AF_NATM)
-
AF_NDRV =
# File 'ext/socket/constdefs.c', line 2894
Network driver raw access
INTEGER2NUM(AF_NDRV)
-
AF_NETBIOS =
# File 'ext/socket/constdefs.c', line 2942
NetBIOS
INTEGER2NUM(AF_NETBIOS)
-
AF_NETGRAPH =
# File 'ext/socket/constdefs.c', line 2978
Netgraph sockets
INTEGER2NUM(AF_NETGRAPH)
-
AF_NETLINK =
# File 'ext/socket/constdefs.c', line 3050
Kernel user interface device
INTEGER2NUM(AF_NETLINK)
-
AF_NS =
# File 'ext/socket/constdefs.c', line 2690
XEROX NS protocols
INTEGER2NUM(AF_NS)
-
AF_OSI =
# File 'ext/socket/constdefs.c', line 2714
ISO Open Systems Interconnection protocols
INTEGER2NUM(AF_OSI)
-
AF_PACKET =
# File 'ext/socket/constdefs.c', line 3002
Direct link-layer access
INTEGER2NUM(AF_PACKET)
-
AF_PPP =
# File 'ext/socket/constdefs.c', line 2954
Point-to-Point Protocol
INTEGER2NUM(AF_PPP)
-
AF_PPPOX =
# File 'ext/socket/constdefs.c', line 3074
Generic PPP transport layer, for setting up L2 tunnels (L2TP and PPPoE)
INTEGER2NUM(AF_PPPOX)
-
AF_PUP =
# File 'ext/socket/constdefs.c', line 2666
PARC Universal Packet protocol
INTEGER2NUM(AF_PUP)
-
AF_RDS =
# File 'ext/socket/constdefs.c', line 3062
Reliable Datagram Sockets (RDS) protocol
INTEGER2NUM(AF_RDS)
-
AF_ROUTE =
# File 'ext/socket/constdefs.c', line 2834
Internal routing protocol
INTEGER2NUM(AF_ROUTE)
-
AF_SIP =
# File 'ext/socket/constdefs.c', line 2882
Simple Internet Protocol
INTEGER2NUM(AF_SIP)
-
AF_SNA =
# File 'ext/socket/constdefs.c', line 2762
IBM SNA protocol
INTEGER2NUM(AF_SNA)
-
AF_SYSTEM =
# File 'ext/socket/constdefs.c', line 2930
Kernel event messages
INTEGER2NUM(AF_SYSTEM)
-
AF_TIPC =
# File 'ext/socket/constdefs.c', line 3134
TIPC, “cluster domain sockets” protocol
INTEGER2NUM(AF_TIPC)
-
AF_UNIX =
# File 'ext/socket/constdefs.c', line 2594
UNIX sockets
INTEGER2NUM(AF_UNIX)
-
AF_UNSPEC =
# File 'ext/socket/constdefs.c', line 2554
Unspecified protocol, any supported address family
INTEGER2NUM(AF_UNSPEC)
-
AF_VSOCK =
# File 'ext/socket/constdefs.c', line 3170
VSOCK (originally “VMWare VSockets”) protocol for hypervisor-guest communication
INTEGER2NUM(AF_VSOCK)
-
AF_XDP =
# File 'ext/socket/constdefs.c', line 3194
XDP (express data path) interface
INTEGER2NUM(AF_XDP)
-
AI_ADDRCONFIG =
# File 'ext/socket/constdefs.c', line 4646
Accept only if any address is assigned
INTEGER2NUM(AI_ADDRCONFIG)
-
AI_ALL =
# File 'ext/socket/constdefs.c', line 4634
Allow all addresses
INTEGER2NUM(AI_ALL)
-
AI_CANONNAME =
# File 'ext/socket/constdefs.c', line 4610
Fill in the canonical name
INTEGER2NUM(AI_CANONNAME)
-
AI_DEFAULT =
# File 'ext/socket/constdefs.c', line 4658
Default flags for getaddrinfo
INTEGER2NUM(AI_DEFAULT)
-
AI_MASK =
# File 'ext/socket/constdefs.c', line 4628
Valid flag mask for getaddrinfo (not for application use)
INTEGER2NUM(AI_MASK)
-
AI_NUMERICHOST =
# File 'ext/socket/constdefs.c', line 4616
Prevent host name resolution
INTEGER2NUM(AI_NUMERICHOST)
-
AI_NUMERICSERV =
# File 'ext/socket/constdefs.c', line 4622
Prevent service name resolution
INTEGER2NUM(AI_NUMERICSERV)
-
AI_PASSIVE =
# File 'ext/socket/constdefs.c', line 4604
Get address to use with bind()
INTEGER2NUM(AI_PASSIVE)
-
AI_V4MAPPED =
# File 'ext/socket/constdefs.c', line 4652
Accept IPv4-mapped IPv6 addresses
INTEGER2NUM(AI_V4MAPPED)
-
AI_V4MAPPED_CFG =
# File 'ext/socket/constdefs.c', line 4640
Accept IPv4 mapped addresses if the kernel supports it
INTEGER2NUM(AI_V4MAPPED_CFG)
-
CONNECTION_ATTEMPT_DELAY =
private
# File 'ext/socket/lib/socket.rb', line 6050.25 -
EAI_ADDRFAMILY =
# File 'ext/socket/constdefs.c', line 4514
Address family for hostname not supported
INTEGER2NUM(EAI_ADDRFAMILY)
-
EAI_AGAIN =
# File 'ext/socket/constdefs.c', line 4520
Temporary failure in name resolution
INTEGER2NUM(EAI_AGAIN)
-
EAI_BADFLAGS =
# File 'ext/socket/constdefs.c', line 4526
Invalid flags
INTEGER2NUM(EAI_BADFLAGS)
-
EAI_BADHINTS =
# File 'ext/socket/constdefs.c', line 4586
Invalid value for hints
INTEGER2NUM(EAI_BADHINTS)
-
EAI_FAIL =
# File 'ext/socket/constdefs.c', line 4532
Non-recoverable failure in name resolution
INTEGER2NUM(EAI_FAIL)
-
EAI_FAMILY =
# File 'ext/socket/constdefs.c', line 4538
Address family not supported
INTEGER2NUM(EAI_FAMILY)
-
EAI_MAX =
# File 'ext/socket/constdefs.c', line 4598
Maximum error code from getaddrinfo
INTEGER2NUM(EAI_MAX)
-
EAI_MEMORY =
# File 'ext/socket/constdefs.c', line 4544
Memory allocation failure
INTEGER2NUM(EAI_MEMORY)
-
EAI_NODATA =
# File 'ext/socket/constdefs.c', line 4550
No address associated with hostname
INTEGER2NUM(EAI_NODATA)
-
EAI_NONAME =
# File 'ext/socket/constdefs.c', line 4556
Hostname nor servname, or not known
INTEGER2NUM(EAI_NONAME)
-
EAI_OVERFLOW =
# File 'ext/socket/constdefs.c', line 4562
Argument buffer overflow
INTEGER2NUM(EAI_OVERFLOW)
-
EAI_PROTOCOL =
# File 'ext/socket/constdefs.c', line 4592
Resolved protocol is unknown
INTEGER2NUM(EAI_PROTOCOL)
-
EAI_SERVICE =
# File 'ext/socket/constdefs.c', line 4568
Servname not supported for socket type
INTEGER2NUM(EAI_SERVICE)
-
EAI_SOCKTYPE =
# File 'ext/socket/constdefs.c', line 4574
Socket type not supported
INTEGER2NUM(EAI_SOCKTYPE)
-
EAI_SYSTEM =
# File 'ext/socket/constdefs.c', line 4580
System error returned in errno
INTEGER2NUM(EAI_SYSTEM)
-
HOSTNAME_RESOLUTION_QUEUE_UPDATED =
private
# File 'ext/socket/lib/socket.rb', line 6140 -
IFF_802_1Q_VLAN =
# File 'ext/socket/constdefs.c', line 5058
802.1Q VLAN device
INTEGER2NUM(IFF_802_1Q_VLAN)
-
IFF_ALLMULTI =
# File 'ext/socket/constdefs.c', line 5064
receive all multicast packets
INTEGER2NUM(IFF_ALLMULTI)
-
IFF_ALTPHYS =
# File 'ext/socket/constdefs.c', line 5070
use alternate physical connection
INTEGER2NUM(IFF_ALTPHYS)
-
IFF_AUTOMEDIA =
# File 'ext/socket/constdefs.c', line 5076
auto media select active
INTEGER2NUM(IFF_AUTOMEDIA)
-
IFF_BONDING =
# File 'ext/socket/constdefs.c', line 5082
bonding master or slave
INTEGER2NUM(IFF_BONDING)
-
IFF_BRIDGE_PORT =
# File 'ext/socket/constdefs.c', line 5088
device used as bridge port
INTEGER2NUM(IFF_BRIDGE_PORT)
-
IFF_BROADCAST =
# File 'ext/socket/constdefs.c', line 5094
broadcast address valid
INTEGER2NUM(IFF_BROADCAST)
-
IFF_CANTCHANGE =
# File 'ext/socket/constdefs.c', line 5400
flags not changeable
INTEGER2NUM(IFF_CANTCHANGE)
-
IFF_CANTCONFIG =
# File 'ext/socket/constdefs.c', line 5100
unconfigurable using ioctl(2)
INTEGER2NUM(IFF_CANTCONFIG)
-
IFF_DEBUG =
# File 'ext/socket/constdefs.c', line 5106
turn on debugging
INTEGER2NUM(IFF_DEBUG)
-
IFF_DISABLE_NETPOLL =
# File 'ext/socket/constdefs.c', line 5112
disable netpoll at run-time
INTEGER2NUM(IFF_DISABLE_NETPOLL)
-
IFF_DONT_BRIDGE =
# File 'ext/socket/constdefs.c', line 5118
disallow bridging this ether dev
INTEGER2NUM(IFF_DONT_BRIDGE)
-
IFF_DORMANT =
# File 'ext/socket/constdefs.c', line 5124
driver signals dormant
INTEGER2NUM(IFF_DORMANT)
-
IFF_DRV_OACTIVE =
# File 'ext/socket/constdefs.c', line 5130
tx hardware queue is full
INTEGER2NUM(IFF_DRV_OACTIVE)
-
IFF_DRV_RUNNING =
# File 'ext/socket/constdefs.c', line 5136
resources allocated
INTEGER2NUM(IFF_DRV_RUNNING)
-
IFF_DYING =
# File 'ext/socket/constdefs.c', line 5142
interface is winding down
INTEGER2NUM(IFF_DYING)
-
IFF_DYNAMIC =
# File 'ext/socket/constdefs.c', line 5148
dialup device with changing addresses
INTEGER2NUM(IFF_DYNAMIC)
-
IFF_EBRIDGE =
# File 'ext/socket/constdefs.c', line 5154
ethernet bridging device
INTEGER2NUM(IFF_EBRIDGE)
-
IFF_ECHO =
# File 'ext/socket/constdefs.c', line 5160
echo sent packets
INTEGER2NUM(IFF_ECHO)
-
IFF_ISATAP =
# File 'ext/socket/constdefs.c', line 5166
ISATAP interface (RFC4214)
INTEGER2NUM(IFF_ISATAP)
-
IFF_LINK0 =
# File 'ext/socket/constdefs.c', line 5172
per link layer defined bit 0
INTEGER2NUM(IFF_LINK0)
-
IFF_LINK1 =
# File 'ext/socket/constdefs.c', line 5178
per link layer defined bit 1
INTEGER2NUM(IFF_LINK1)
-
IFF_LINK2 =
# File 'ext/socket/constdefs.c', line 5184
per link layer defined bit 2
INTEGER2NUM(IFF_LINK2)
-
IFF_LIVE_ADDR_CHANGE =
# File 'ext/socket/constdefs.c', line 5190
hardware address change when it’s running
INTEGER2NUM(IFF_LIVE_ADDR_CHANGE)
-
IFF_LOOPBACK =
# File 'ext/socket/constdefs.c', line 5196
loopback net
INTEGER2NUM(IFF_LOOPBACK)
-
IFF_LOWER_UP =
# File 'ext/socket/constdefs.c', line 5202
driver signals L1 up
INTEGER2NUM(IFF_LOWER_UP)
-
IFF_MACVLAN_PORT =
# File 'ext/socket/constdefs.c', line 5208
device used as macvlan port
INTEGER2NUM(IFF_MACVLAN_PORT)
-
IFF_MASTER =
# File 'ext/socket/constdefs.c', line 5214
master of a load balancer
INTEGER2NUM(IFF_MASTER)
-
IFF_MASTER_8023AD =
# File 'ext/socket/constdefs.c', line 5220
bonding master, 802.3ad.
INTEGER2NUM(IFF_MASTER_8023AD)
-
IFF_MASTER_ALB =
# File 'ext/socket/constdefs.c', line 5226
bonding master, balance-alb.
INTEGER2NUM(IFF_MASTER_ALB)
-
IFF_MASTER_ARPMON =
# File 'ext/socket/constdefs.c', line 5232
bonding master, ARP mon in use
INTEGER2NUM(IFF_MASTER_ARPMON)
-
IFF_MONITOR =
# File 'ext/socket/constdefs.c', line 5238
user-requested monitor mode
INTEGER2NUM(IFF_MONITOR)
-
IFF_MULTICAST =
# File 'ext/socket/constdefs.c', line 5244
supports multicast
INTEGER2NUM(IFF_MULTICAST)
-
IFF_NOARP =
# File 'ext/socket/constdefs.c', line 5250
no address resolution protocol
INTEGER2NUM(IFF_NOARP)
-
IFF_NOTRAILERS =
# File 'ext/socket/constdefs.c', line 5256
avoid use of trailers
INTEGER2NUM(IFF_NOTRAILERS)
-
IFF_OACTIVE =
# File 'ext/socket/constdefs.c', line 5262
transmission in progress
INTEGER2NUM(IFF_OACTIVE)
-
IFF_OVS_DATAPATH =
# File 'ext/socket/constdefs.c', line 5268
device used as Open vSwitch datapath port
INTEGER2NUM(IFF_OVS_DATAPATH)
-
IFF_POINTOPOINT =
# File 'ext/socket/constdefs.c', line 5274
point-to-point link
INTEGER2NUM(IFF_POINTOPOINT)
-
IFF_PORTSEL =
# File 'ext/socket/constdefs.c', line 5280
can set media type
INTEGER2NUM(IFF_PORTSEL)
-
IFF_PPROMISC =
# File 'ext/socket/constdefs.c', line 5286
user-requested promisc mode
INTEGER2NUM(IFF_PPROMISC)
-
IFF_PROMISC =
# File 'ext/socket/constdefs.c', line 5292
receive all packets
INTEGER2NUM(IFF_PROMISC)
-
IFF_RENAMING =
# File 'ext/socket/constdefs.c', line 5298
interface is being renamed
INTEGER2NUM(IFF_RENAMING)
-
IFF_ROUTE =
# File 'ext/socket/constdefs.c', line 5304
routing entry installed
INTEGER2NUM(IFF_ROUTE)
-
IFF_RUNNING =
# File 'ext/socket/constdefs.c', line 5310
resources allocated
INTEGER2NUM(IFF_RUNNING)
-
IFF_SIMPLEX =
# File 'ext/socket/constdefs.c', line 5316
can’t hear own transmissions
INTEGER2NUM(IFF_SIMPLEX)
-
IFF_SLAVE =
# File 'ext/socket/constdefs.c', line 5322
slave of a load balancer
INTEGER2NUM(IFF_SLAVE)
-
IFF_SLAVE_INACTIVE =
# File 'ext/socket/constdefs.c', line 5328
bonding slave not the curr. active
INTEGER2NUM(IFF_SLAVE_INACTIVE)
-
IFF_SLAVE_NEEDARP =
# File 'ext/socket/constdefs.c', line 5334
need ARPs for validation
INTEGER2NUM(IFF_SLAVE_NEEDARP)
-
IFF_SMART =
# File 'ext/socket/constdefs.c', line 5340
interface manages own routes
INTEGER2NUM(IFF_SMART)
-
IFF_STATICARP =
# File 'ext/socket/constdefs.c', line 5346
static ARP
INTEGER2NUM(IFF_STATICARP)
-
IFF_SUPP_NOFCS =
# File 'ext/socket/constdefs.c', line 5352
sending custom FCS
INTEGER2NUM(IFF_SUPP_NOFCS)
-
IFF_TEAM_PORT =
# File 'ext/socket/constdefs.c', line 5358
used as team port
INTEGER2NUM(IFF_TEAM_PORT)
-
IFF_TX_SKB_SHARING =
# File 'ext/socket/constdefs.c', line 5364
sharing skbs on transmit
INTEGER2NUM(IFF_TX_SKB_SHARING)
-
IFF_UNICAST_FLT =
# File 'ext/socket/constdefs.c', line 5370
unicast filtering
INTEGER2NUM(IFF_UNICAST_FLT)
-
IFF_UP =
# File 'ext/socket/constdefs.c', line 5376
interface is up
INTEGER2NUM(IFF_UP)
-
IFF_VOLATILE =
# File 'ext/socket/constdefs.c', line 5394
volatile flags
INTEGER2NUM(IFF_VOLATILE)
-
IFF_WAN_HDLC =
# File 'ext/socket/constdefs.c', line 5382
WAN HDLC device
INTEGER2NUM(IFF_WAN_HDLC)
-
IFF_XMIT_DST_RELEASE =
# File 'ext/socket/constdefs.c', line 5388
dev_hard_start_xmit() is allowed to release skb->dst
INTEGER2NUM(IFF_XMIT_DST_RELEASE)
-
IFNAMSIZ =
# File 'ext/socket/constdefs.c', line 4968
Maximum interface name size
INTEGER2NUM(IFNAMSIZ)
-
IF_NAMESIZE =
# File 'ext/socket/constdefs.c', line 4974
Maximum interface name size
INTEGER2NUM(IF_NAMESIZE)
-
INADDR_ALLHOSTS_GROUP =
# File 'ext/socket/constdefs.c', line 3584
Multicast group for all systems on this subset
INTEGER2NUM(INADDR_ALLHOSTS_GROUP)
-
INADDR_ANY =
# File 'ext/socket/constdefs.c', line 3560
A socket bound to
INADDR_ANYreceives packets from all interfaces and sends from the default IP addressINTEGER2NUM(INADDR_ANY)
-
INADDR_BROADCAST =
# File 'ext/socket/constdefs.c', line 3566
The network broadcast address
INTEGER2NUM(INADDR_BROADCAST)
-
INADDR_LOOPBACK =
# File 'ext/socket/constdefs.c', line 3572
The loopback address
INTEGER2NUM(INADDR_LOOPBACK)
-
INADDR_MAX_LOCAL_GROUP =
# File 'ext/socket/constdefs.c', line 3590
The last local network multicast group
INTEGER2NUM(INADDR_MAX_LOCAL_GROUP)
-
INADDR_NONE =
# File 'ext/socket/constdefs.c', line 3596
A bitmask for matching no valid IP address
INTEGER2NUM(INADDR_NONE)
-
INADDR_UNSPEC_GROUP =
# File 'ext/socket/constdefs.c', line 3578
The reserved multicast group
INTEGER2NUM(INADDR_UNSPEC_GROUP)
-
INET6_ADDRSTRLEN =
# File 'ext/socket/constdefs.c', line 4962
Maximum length of an IPv6 address string
INTEGER2NUM(INET6_ADDRSTRLEN)
-
INET_ADDRSTRLEN =
# File 'ext/socket/constdefs.c', line 4956
Maximum length of an IPv4 address string
INTEGER2NUM(INET_ADDRSTRLEN)
-
IPPORT_RESERVED =
# File 'ext/socket/constdefs.c', line 3548
Default minimum address for bind or connect
INTEGER2NUM(IPPORT_RESERVED)
-
IPPORT_USERRESERVED =
# File 'ext/socket/constdefs.c', line 3554
Default maximum address for bind or connect
INTEGER2NUM(IPPORT_USERRESERVED)
-
IPPROTO_AH =
# File 'ext/socket/constdefs.c', line 3482
IP6 auth header
INTEGER2NUM(IPPROTO_AH)
-
IPPROTO_BIP =
# File 'ext/socket/constdefs.c', line 3476
IPPROTO_BIPINTEGER2NUM(IPPROTO_BIP)
-
IPPROTO_DSTOPTS =
# File 'ext/socket/constdefs.c', line 3488
IP6 destination option
INTEGER2NUM(IPPROTO_DSTOPTS)
-
IPPROTO_EGP =
# File 'ext/socket/constdefs.c', line 3422
Exterior Gateway Protocol
INTEGER2NUM(IPPROTO_EGP)
-
IPPROTO_EON =
# File 'ext/socket/constdefs.c', line 3470
ISO cnlp
INTEGER2NUM(IPPROTO_EON)
-
IPPROTO_ESP =
# File 'ext/socket/constdefs.c', line 3494
IP6 Encapsulated Security Payload
INTEGER2NUM(IPPROTO_ESP)
-
IPPROTO_FRAGMENT =
# File 'ext/socket/constdefs.c', line 3500
IP6 fragmentation header
INTEGER2NUM(IPPROTO_FRAGMENT)
-
IPPROTO_GGP =
# File 'ext/socket/constdefs.c', line 3410
Gateway to Gateway Protocol
INTEGER2NUM(IPPROTO_GGP)
-
IPPROTO_HELLO =
# File 'ext/socket/constdefs.c', line 3446
“hello” routing protocol
INTEGER2NUM(IPPROTO_HELLO)
-
IPPROTO_HOPOPTS =
# File 'ext/socket/constdefs.c', line 3506
IP6 hop-by-hop options
INTEGER2NUM(IPPROTO_HOPOPTS)
-
IPPROTO_ICMP =
# File 'ext/socket/constdefs.c', line 3398
Control message protocol
INTEGER2NUM(IPPROTO_ICMP)
-
IPPROTO_ICMPV6 =
# File 'ext/socket/constdefs.c', line 3512
ICMP6
INTEGER2NUM(IPPROTO_ICMPV6)
-
IPPROTO_IDP =
# File 'ext/socket/constdefs.c', line 3440
XNS IDP
INTEGER2NUM(IPPROTO_IDP)
-
IPPROTO_IGMP =
# File 'ext/socket/constdefs.c', line 3404
Group Management Protocol
INTEGER2NUM(IPPROTO_IGMP)
-
IPPROTO_IP =
# File 'ext/socket/constdefs.c', line 3392
Dummy protocol for IP
INTEGER2NUM(IPPROTO_IP)
-
IPPROTO_IPV6 =
# File 'ext/socket/constdefs.c', line 3518
IP6 header
INTEGER2NUM(IPPROTO_IPV6)
-
IPPROTO_MAX =
# File 'ext/socket/constdefs.c', line 3542
Maximum IPPROTO constant
INTEGER2NUM(IPPROTO_MAX)
-
IPPROTO_ND =
# File 'ext/socket/constdefs.c', line 3452
Sun net disk protocol
INTEGER2NUM(IPPROTO_ND)
-
IPPROTO_NONE =
# File 'ext/socket/constdefs.c', line 3524
IP6 no next header
INTEGER2NUM(IPPROTO_NONE)
-
IPPROTO_PUP =
# File 'ext/socket/constdefs.c', line 3428
PARC Universal Packet protocol
INTEGER2NUM(IPPROTO_PUP)
-
IPPROTO_RAW =
# File 'ext/socket/constdefs.c', line 3536
Raw IP packet
INTEGER2NUM(IPPROTO_RAW)
-
IPPROTO_ROUTING =
# File 'ext/socket/constdefs.c', line 3530
IP6 routing header
INTEGER2NUM(IPPROTO_ROUTING)
-
IPPROTO_TCP =
# File 'ext/socket/constdefs.c', line 3416
TCP
INTEGER2NUM(IPPROTO_TCP)
-
IPPROTO_TP =
# File 'ext/socket/constdefs.c', line 3458
ISO transport protocol class 4
INTEGER2NUM(IPPROTO_TP)
-
IPPROTO_UDP =
# File 'ext/socket/constdefs.c', line 3434
UDP
INTEGER2NUM(IPPROTO_UDP)
-
IPPROTO_XTP =
# File 'ext/socket/constdefs.c', line 3464
Xpress Transport Protocol
INTEGER2NUM(IPPROTO_XTP)
-
IPV6_ADDRESS_FORMAT =
private
# File 'ext/socket/lib/socket.rb', line 617/\A(?i:(?:(?:[0-9A-F]{1,4}:){7}(?:[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){6}(?:[0-9A-F]{1,4}|:(?:[0-9A-F]{1,4}:){1,5}[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){5}(?:(?::[0-9A-F]{1,4}){1,2}|:(?:[0-9A-F]{1,4}:){1,4}[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){4}(?:(?::[0-9A-F]{1,4}){1,3}|:(?:[0-9A-F]{1,4}:){1,3}[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){3}(?:(?::[0-9A-F]{1,4}){1,4}|:(?:[0-9A-F]{1,4}:){1,2}[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){2}(?:(?::[0-9A-F]{1,4}){1,5}|:(?:[0-9A-F]{1,4}:)[0-9A-F]{1,4}|:)|(?:[0-9A-F]{1,4}:){1}(?:(?::[0-9A-F]{1,4}){1,6}|:(?:[0-9A-F]{1,4}:){0,5}[0-9A-F]{1,4}|:)|(?:::(?:[0-9A-F]{1,4}:){0,7}[0-9A-F]{1,4}|::)))(?:%.+)?\z/ -
IPV6_CHECKSUM =
# File 'ext/socket/constdefs.c', line 4789
Checksum offset for raw sockets
INTEGER2NUM(IPV6_CHECKSUM)
-
IPV6_DONTFRAG =
# File 'ext/socket/constdefs.c', line 4797
Don’t fragment packets
INTEGER2NUM(IPV6_DONTFRAG)
-
IPV6_DSTOPTS =
# File 'ext/socket/constdefs.c', line 4805
Destination option
INTEGER2NUM(IPV6_DSTOPTS)
-
IPV6_HOPLIMIT =
# File 'ext/socket/constdefs.c', line 4813
Hop limit
INTEGER2NUM(IPV6_HOPLIMIT)
-
IPV6_HOPOPTS =
# File 'ext/socket/constdefs.c', line 4821
Hop-by-hop option
INTEGER2NUM(IPV6_HOPOPTS)
-
IPV6_JOIN_GROUP =
# File 'ext/socket/constdefs.c', line 4725
Join a group membership
INTEGER2NUM(IPV6_JOIN_GROUP)
-
IPV6_LEAVE_GROUP =
# File 'ext/socket/constdefs.c', line 4733
Leave a group membership
INTEGER2NUM(IPV6_LEAVE_GROUP)
-
IPV6_MTU_DISCOVER =
# File 'ext/socket/constdefs.c', line 4741
Path MTU discovery
INTEGER2NUM(IPV6_MTU_DISCOVER)
-
IPV6_MULTICAST_HOPS =
# File 'ext/socket/constdefs.c', line 4749
IP6 multicast hops
INTEGER2NUM(IPV6_MULTICAST_HOPS)
-
IPV6_MULTICAST_IF =
# File 'ext/socket/constdefs.c', line 4757
IP6 multicast interface
INTEGER2NUM(IPV6_MULTICAST_IF)
-
IPV6_MULTICAST_LOOP =
# File 'ext/socket/constdefs.c', line 4765
IP6 multicast loopback
INTEGER2NUM(IPV6_MULTICAST_LOOP)
-
IPV6_NEXTHOP =
# File 'ext/socket/constdefs.c', line 4829
Next hop address
INTEGER2NUM(IPV6_NEXTHOP)
-
IPV6_PATHMTU =
# File 'ext/socket/constdefs.c', line 4837
Retrieve current path MTU
INTEGER2NUM(IPV6_PATHMTU)
-
IPV6_PKTINFO =
# File 'ext/socket/constdefs.c', line 4845
Receive packet information with datagram
INTEGER2NUM(IPV6_PKTINFO)
-
IPV6_RECVDSTOPTS =
# File 'ext/socket/constdefs.c', line 4853
Receive all IP6 options for response
INTEGER2NUM(IPV6_RECVDSTOPTS)
-
IPV6_RECVERR =
# File 'ext/socket/constdefs.c', line 4861
Enable extended reliable error message passing
INTEGER2NUM(IPV6_RECVERR)
-
IPV6_RECVHOPLIMIT =
# File 'ext/socket/constdefs.c', line 4869
Receive hop limit with datagram
INTEGER2NUM(IPV6_RECVHOPLIMIT)
-
IPV6_RECVHOPOPTS =
# File 'ext/socket/constdefs.c', line 4877
Receive hop-by-hop options
INTEGER2NUM(IPV6_RECVHOPOPTS)
-
IPV6_RECVPATHMTU =
# File 'ext/socket/constdefs.c', line 4933
Receive current path MTU with datagram
INTEGER2NUM(IPV6_RECVPATHMTU)
-
IPV6_RECVPKTINFO =
# File 'ext/socket/constdefs.c', line 4885
Receive destination IP address and incoming interface
INTEGER2NUM(IPV6_RECVPKTINFO)
-
IPV6_RECVRTHDR =
# File 'ext/socket/constdefs.c', line 4893
Receive routing header
INTEGER2NUM(IPV6_RECVRTHDR)
-
IPV6_RECVTCLASS =
# File 'ext/socket/constdefs.c', line 4901
Receive traffic class
INTEGER2NUM(IPV6_RECVTCLASS)
-
IPV6_RTHDR =
# File 'ext/socket/constdefs.c', line 4909
Allows removal of sticky routing headers
INTEGER2NUM(IPV6_RTHDR)
-
IPV6_RTHDRDSTOPTS =
# File 'ext/socket/constdefs.c', line 4917
Allows removal of sticky destination options header
INTEGER2NUM(IPV6_RTHDRDSTOPTS)
-
IPV6_RTHDR_TYPE_0 =
# File 'ext/socket/constdefs.c', line 4925
Routing header type 0
INTEGER2NUM(IPV6_RTHDR_TYPE_0)
-
IPV6_TCLASS =
# File 'ext/socket/constdefs.c', line 4941
Specify the traffic class
INTEGER2NUM(IPV6_TCLASS)
-
IPV6_UNICAST_HOPS =
# File 'ext/socket/constdefs.c', line 4773
IP6 unicast hops
INTEGER2NUM(IPV6_UNICAST_HOPS)
-
IPV6_USE_MIN_MTU =
# File 'ext/socket/constdefs.c', line 4949
Use the minimum MTU size
INTEGER2NUM(IPV6_USE_MIN_MTU)
-
IPV6_V6ONLY =
# File 'ext/socket/constdefs.c', line 4781
Only bind IPv6 with a wildcard bind
INTEGER2NUM(IPV6_V6ONLY)
-
IPX_TYPE =
# File 'ext/socket/constdefs.c', line 4334
IPX_TYPEINTEGER2NUM(IPX_TYPE)
-
IP_ADD_MEMBERSHIP =
# File 'ext/socket/constdefs.c', line 3716
Add a multicast group membership
INTEGER2NUM(IP_ADD_MEMBERSHIP)
-
IP_ADD_SOURCE_MEMBERSHIP =
# File 'ext/socket/constdefs.c', line 3848
Add a multicast group membership
INTEGER2NUM(IP_ADD_SOURCE_MEMBERSHIP)
-
IP_BLOCK_SOURCE =
# File 'ext/socket/constdefs.c', line 3842
Block IPv4 multicast packets with a give source address
INTEGER2NUM(IP_BLOCK_SOURCE)
-
IP_DEFAULT_MULTICAST_LOOP =
# File 'ext/socket/constdefs.c', line 3734
Default multicast loopback
INTEGER2NUM(IP_DEFAULT_MULTICAST_LOOP)
-
IP_DEFAULT_MULTICAST_TTL =
# File 'ext/socket/constdefs.c', line 3728
Default multicast TTL
INTEGER2NUM(IP_DEFAULT_MULTICAST_TTL)
-
IP_DONTFRAG =
# File 'ext/socket/constdefs.c', line 3656
Don’t fragment packets
INTEGER2NUM(IP_DONTFRAG)
-
IP_DROP_MEMBERSHIP =
# File 'ext/socket/constdefs.c', line 3722
Drop a multicast group membership
INTEGER2NUM(IP_DROP_MEMBERSHIP)
-
IP_DROP_SOURCE_MEMBERSHIP =
# File 'ext/socket/constdefs.c', line 3854
Drop a multicast group membership
INTEGER2NUM(IP_DROP_SOURCE_MEMBERSHIP)
-
IP_FREEBIND =
# File 'ext/socket/constdefs.c', line 3788
Allow binding to nonexistent IP addresses
INTEGER2NUM(IP_FREEBIND)
-
IP_HDRINCL =
# File 'ext/socket/constdefs.c', line 3608
Header is included with data
INTEGER2NUM(IP_HDRINCL)
-
IP_IPSEC_POLICY =
# File 'ext/socket/constdefs.c', line 3794
IPsec security policy
INTEGER2NUM(IP_IPSEC_POLICY)
-
IP_MAX_MEMBERSHIPS =
# File 'ext/socket/constdefs.c', line 3740
Maximum number multicast groups a socket can join
INTEGER2NUM(IP_MAX_MEMBERSHIPS)
-
IP_MINTTL =
# File 'ext/socket/constdefs.c', line 3650
Minimum TTL allowed for received packets
INTEGER2NUM(IP_MINTTL)
-
IP_MSFILTER =
# File 'ext/socket/constdefs.c', line 3860
Multicast source filtering
INTEGER2NUM(IP_MSFILTER)
-
IP_MTU =
# File 'ext/socket/constdefs.c', line 3782
The Maximum Transmission Unit of the socket
INTEGER2NUM(IP_MTU)
-
IP_MTU_DISCOVER =
# File 'ext/socket/constdefs.c', line 3764
Path MTU discovery
INTEGER2NUM(IP_MTU_DISCOVER)
-
IP_MULTICAST_IF =
# File 'ext/socket/constdefs.c', line 3698
IP multicast interface
INTEGER2NUM(IP_MULTICAST_IF)
-
IP_MULTICAST_LOOP =
# File 'ext/socket/constdefs.c', line 3710
IP multicast loopback
INTEGER2NUM(IP_MULTICAST_LOOP)
-
IP_MULTICAST_TTL =
# File 'ext/socket/constdefs.c', line 3704
IP multicast TTL
INTEGER2NUM(IP_MULTICAST_TTL)
-
IP_ONESBCAST =
# File 'ext/socket/constdefs.c', line 3668
Force outgoing broadcast datagrams to have the undirected broadcast address
INTEGER2NUM(IP_ONESBCAST)
-
IP_OPTIONS =
# File 'ext/socket/constdefs.c', line 3602
IP options to be included in packets
INTEGER2NUM(IP_OPTIONS)
-
IP_PASSSEC =
# File 'ext/socket/constdefs.c', line 3806
Retrieve security context with datagram
INTEGER2NUM(IP_PASSSEC)
-
IP_PKTINFO =
# File 'ext/socket/constdefs.c', line 3752
Receive packet information with datagrams
INTEGER2NUM(IP_PKTINFO)
-
IP_PKTOPTIONS =
# File 'ext/socket/constdefs.c', line 3758
Receive packet options with datagrams
INTEGER2NUM(IP_PKTOPTIONS)
-
IP_PMTUDISC_DO =
# File 'ext/socket/constdefs.c', line 3830
Always send DF frames
INTEGER2NUM(IP_PMTUDISC_DO)
-
IP_PMTUDISC_DONT =
# File 'ext/socket/constdefs.c', line 3818
Never send DF frames
INTEGER2NUM(IP_PMTUDISC_DONT)
-
IP_PMTUDISC_WANT =
# File 'ext/socket/constdefs.c', line 3824
Use per-route hints
INTEGER2NUM(IP_PMTUDISC_WANT)
-
IP_PORTRANGE =
# File 'ext/socket/constdefs.c', line 3692
Set the port range for sockets with unspecified port numbers
INTEGER2NUM(IP_PORTRANGE)
-
IP_RECVDSTADDR =
# File 'ext/socket/constdefs.c', line 3638
Receive IP destination address with datagram
INTEGER2NUM(IP_RECVDSTADDR)
-
IP_RECVERR =
# File 'ext/socket/constdefs.c', line 3770
Enable extended reliable error message passing
INTEGER2NUM(IP_RECVERR)
-
IP_RECVIF =
# File 'ext/socket/constdefs.c', line 3680
Receive interface information with datagrams
INTEGER2NUM(IP_RECVIF)
-
IP_RECVOPTS =
# File 'ext/socket/constdefs.c', line 3626
Receive all IP options with datagram
INTEGER2NUM(IP_RECVOPTS)
-
IP_RECVRETOPTS =
# File 'ext/socket/constdefs.c', line 3632
Receive all IP options for response
INTEGER2NUM(IP_RECVRETOPTS)
-
IP_RECVSLLA =
# File 'ext/socket/constdefs.c', line 3686
Receive link-layer address with datagrams
INTEGER2NUM(IP_RECVSLLA)
-
IP_RECVTOS =
# File 'ext/socket/constdefs.c', line 3776
Receive TOS with incoming packets
INTEGER2NUM(IP_RECVTOS)
-
IP_RECVTTL =
# File 'ext/socket/constdefs.c', line 3674
Receive IP TTL with datagrams
INTEGER2NUM(IP_RECVTTL)
-
IP_RETOPTS =
# File 'ext/socket/constdefs.c', line 3644
IP options to be included in datagrams
INTEGER2NUM(IP_RETOPTS)
-
IP_ROUTER_ALERT =
# File 'ext/socket/constdefs.c', line 3746
Notify transit routers to more closely examine the contents of an IP packet
INTEGER2NUM(IP_ROUTER_ALERT)
-
IP_SENDSRCADDR =
# File 'ext/socket/constdefs.c', line 3662
Source address for outgoing UDP datagrams
INTEGER2NUM(IP_SENDSRCADDR)
-
IP_TOS =
# File 'ext/socket/constdefs.c', line 3614
IP type-of-service
INTEGER2NUM(IP_TOS)
-
IP_TRANSPARENT =
# File 'ext/socket/constdefs.c', line 3812
Transparent proxy
INTEGER2NUM(IP_TRANSPARENT)
-
IP_TTL =
# File 'ext/socket/constdefs.c', line 3620
IP time-to-live
INTEGER2NUM(IP_TTL)
-
IP_UNBLOCK_SOURCE =
# File 'ext/socket/constdefs.c', line 3836
Unblock IPv4 multicast packets with a give source address
INTEGER2NUM(IP_UNBLOCK_SOURCE)
-
IP_XFRM_POLICY =
# File 'ext/socket/constdefs.c', line 3800
IP_XFRM_POLICYINTEGER2NUM(IP_XFRM_POLICY)
-
LOCAL_CONNWAIT =
# File 'ext/socket/constdefs.c', line 5052
Connect blocks until accepted
INTEGER2NUM(LOCAL_CONNWAIT)
-
LOCAL_CREDS =
# File 'ext/socket/constdefs.c', line 5046
Pass credentials to receiver
INTEGER2NUM(LOCAL_CREDS)
-
LOCAL_PEERCRED =
# File 'ext/socket/constdefs.c', line 5040
Retrieve peer credentials
INTEGER2NUM(LOCAL_PEERCRED)
-
MCAST_BLOCK_SOURCE =
# File 'ext/socket/constdefs.c', line 3872
Block multicast packets from this source
INTEGER2NUM(MCAST_BLOCK_SOURCE)
-
MCAST_EXCLUDE =
# File 'ext/socket/constdefs.c', line 3908
Exclusive multicast source filter
INTEGER2NUM(MCAST_EXCLUDE)
-
MCAST_INCLUDE =
# File 'ext/socket/constdefs.c', line 3914
Inclusive multicast source filter
INTEGER2NUM(MCAST_INCLUDE)
-
MCAST_JOIN_GROUP =
# File 'ext/socket/constdefs.c', line 3866
Join a multicast group
INTEGER2NUM(MCAST_JOIN_GROUP)
-
MCAST_JOIN_SOURCE_GROUP =
# File 'ext/socket/constdefs.c', line 3890
Join a multicast source group
INTEGER2NUM(MCAST_JOIN_SOURCE_GROUP)
-
MCAST_LEAVE_GROUP =
# File 'ext/socket/constdefs.c', line 3884
Leave a multicast group
INTEGER2NUM(MCAST_LEAVE_GROUP)
-
MCAST_LEAVE_SOURCE_GROUP =
# File 'ext/socket/constdefs.c', line 3896
Leave a multicast source group
INTEGER2NUM(MCAST_LEAVE_SOURCE_GROUP)
-
MCAST_MSFILTER =
# File 'ext/socket/constdefs.c', line 3902
Multicast source filtering
INTEGER2NUM(MCAST_MSFILTER)
-
MCAST_UNBLOCK_SOURCE =
# File 'ext/socket/constdefs.c', line 3878
Unblock multicast packets from this source
INTEGER2NUM(MCAST_UNBLOCK_SOURCE)
-
MSG_COMPAT =
# File 'ext/socket/constdefs.c', line 3290
End of record
INTEGER2NUM(MSG_COMPAT)
-
MSG_CONFIRM =
# File 'ext/socket/constdefs.c', line 3314
Confirm path validity
INTEGER2NUM(MSG_CONFIRM)
-
MSG_CTRUNC =
# File 'ext/socket/constdefs.c', line 3236
Control data lost before delivery
INTEGER2NUM(MSG_CTRUNC)
-
MSG_DONTROUTE =
# File 'ext/socket/constdefs.c', line 3218
Send without using the routing tables
INTEGER2NUM(MSG_DONTROUTE)
-
MSG_DONTWAIT =
# File 'ext/socket/constdefs.c', line 3248
This message should be non-blocking
INTEGER2NUM(MSG_DONTWAIT)
-
MSG_EOF =
# File 'ext/socket/constdefs.c', line 3254
Data completes connection
INTEGER2NUM(MSG_EOF)
-
MSG_EOR =
# File 'ext/socket/constdefs.c', line 3224
Data completes record
INTEGER2NUM(MSG_EOR)
-
MSG_ERRQUEUE =
# File 'ext/socket/constdefs.c', line 3326
Fetch message from error queue
INTEGER2NUM(MSG_ERRQUEUE)
-
MSG_FASTOPEN =
# File 'ext/socket/constdefs.c', line 3344
Reduce step of the handshake process
INTEGER2NUM(MSG_FASTOPEN)
-
MSG_FIN =
# File 'ext/socket/constdefs.c', line 3302
MSG_FININTEGER2NUM(MSG_FIN)
-
MSG_FLUSH =
# File 'ext/socket/constdefs.c', line 3260
Start of a hold sequence. Dumps to so_temp
INTEGER2NUM(MSG_FLUSH)
-
MSG_HAVEMORE =
# File 'ext/socket/constdefs.c', line 3278
Data ready to be read
INTEGER2NUM(MSG_HAVEMORE)
-
MSG_HOLD =
# File 'ext/socket/constdefs.c', line 3266
Hold fragment in so_temp
INTEGER2NUM(MSG_HOLD)
-
MSG_MORE =
# File 'ext/socket/constdefs.c', line 3338
Sender will send more
INTEGER2NUM(MSG_MORE)
-
MSG_NOSIGNAL =
# File 'ext/socket/constdefs.c', line 3332
Do not generate SIGPIPE
INTEGER2NUM(MSG_NOSIGNAL)
-
MSG_OOB =
# File 'ext/socket/constdefs.c', line 3206
Process out-of-band data
INTEGER2NUM(MSG_OOB)
-
MSG_PEEK =
# File 'ext/socket/constdefs.c', line 3212
Peek at incoming message
INTEGER2NUM(MSG_PEEK)
-
MSG_PROXY =
# File 'ext/socket/constdefs.c', line 3296
Wait for full request
INTEGER2NUM(MSG_PROXY)
-
MSG_RCVMORE =
# File 'ext/socket/constdefs.c', line 3284
Data remains in the current packet
INTEGER2NUM(MSG_RCVMORE)
-
MSG_RST =
# File 'ext/socket/constdefs.c', line 3320
MSG_RSTINTEGER2NUM(MSG_RST)
-
MSG_SEND =
# File 'ext/socket/constdefs.c', line 3272
Send the packet in so_temp
INTEGER2NUM(MSG_SEND)
-
MSG_SYN =
# File 'ext/socket/constdefs.c', line 3308
MSG_SYNINTEGER2NUM(MSG_SYN)
-
MSG_TRUNC =
# File 'ext/socket/constdefs.c', line 3230
Data discarded before delivery
INTEGER2NUM(MSG_TRUNC)
-
MSG_WAITALL =
# File 'ext/socket/constdefs.c', line 3242
Wait for full request or error
INTEGER2NUM(MSG_WAITALL)
-
NI_DGRAM =
# File 'ext/socket/constdefs.c', line 4700
The service specified is a datagram service (looks up UDP ports)
INTEGER2NUM(NI_DGRAM)
-
NI_MAXHOST =
# File 'ext/socket/constdefs.c', line 4664
Maximum length of a hostname
INTEGER2NUM(NI_MAXHOST)
-
NI_MAXSERV =
# File 'ext/socket/constdefs.c', line 4670
Maximum length of a service name
INTEGER2NUM(NI_MAXSERV)
-
NI_NAMEREQD =
# File 'ext/socket/constdefs.c', line 4688
A name is required
INTEGER2NUM(NI_NAMEREQD)
-
NI_NOFQDN =
# File 'ext/socket/constdefs.c', line 4676
An FQDN is not required for local hosts, return only the local part
INTEGER2NUM(NI_NOFQDN)
-
NI_NUMERICHOST =
# File 'ext/socket/constdefs.c', line 4682
Return a numeric address
INTEGER2NUM(NI_NUMERICHOST)
-
NI_NUMERICSERV =
# File 'ext/socket/constdefs.c', line 4694
Return the service name as a digit string
INTEGER2NUM(NI_NUMERICSERV)
-
PF_ALG =
# File 'ext/socket/constdefs.c', line 3164
Interface to kernel crypto API
INTEGER2NUM(PF_ALG)
-
PF_APPLETALK =
# File 'ext/socket/constdefs.c', line 2636
AppleTalk protocol
INTEGER2NUM(PF_APPLETALK)
-
PF_ATM =
# File 'ext/socket/constdefs.c', line 2972
Asynchronous Transfer Mode
INTEGER2NUM(PF_ATM)
-
PF_AX25 =
# File 'ext/socket/constdefs.c', line 2612
AX.25protocolINTEGER2NUM(PF_AX25)
-
PF_BLUETOOTH =
# File 'ext/socket/constdefs.c', line 3152
Bluetooth low-level socket protocol
INTEGER2NUM(PF_BLUETOOTH)
-
PF_CAN =
# File 'ext/socket/constdefs.c', line 3128
Controller Area Network automotive bus protocol
INTEGER2NUM(PF_CAN)
-
PF_CCITT =
# File 'ext/socket/constdefs.c', line 2756
CCITT (now ITU-T) protocols
INTEGER2NUM(PF_CCITT)
-
PF_CHAOS =
# File 'ext/socket/constdefs.c', line 2684
MIT CHAOS protocols
INTEGER2NUM(PF_CHAOS)
-
PF_CNT =
# File 'ext/socket/constdefs.c', line 2876
Computer Network Technology
INTEGER2NUM(PF_CNT)
-
PF_COIP =
# File 'ext/socket/constdefs.c', line 2864
Connection-oriented IP
INTEGER2NUM(PF_COIP)
-
PF_DATAKIT =
# File 'ext/socket/constdefs.c', line 2744
Datakit protocol
INTEGER2NUM(PF_DATAKIT)
-
PF_DEC =
# File 'ext/socket/constdefs.c', line 2780
DECnet protocol
INTEGER2NUM(PF_DEC)
-
PF_DECnet =
# File 'ext/socket/constdefs.c', line 2792
DECnet protocol
INTEGER2NUM(PF_DECnet)
-
PF_DLI =
# File 'ext/socket/constdefs.c', line 2804
DEC Direct Data Link Interface protocol
INTEGER2NUM(PF_DLI)
-
PF_ECMA =
# File 'ext/socket/constdefs.c', line 2732
European Computer Manufacturers protocols
INTEGER2NUM(PF_ECMA)
-
PF_HYLINK =
# File 'ext/socket/constdefs.c', line 2828
NSC Hyperchannel protocol
INTEGER2NUM(PF_HYLINK)
-
PF_IB =
# File 'ext/socket/constdefs.c', line 3104
InfiniBand native addressing
INTEGER2NUM(PF_IB)
-
PF_IMPLINK =
# File 'ext/socket/constdefs.c', line 2660
ARPANET IMP protocol
INTEGER2NUM(PF_IMPLINK)
-
PF_INET =
# File 'ext/socket/constdefs.c', line 2572
IPv4 protocol
INTEGER2NUM(PF_INET)
-
PF_INET6 =
# File 'ext/socket/constdefs.c', line 2587
IPv6 protocol
INTEGER2NUM(PF_INET6)
-
PF_IPX =
# File 'ext/socket/constdefs.c', line 2624
IPX protocol
INTEGER2NUM(PF_IPX)
-
PF_ISDN =
# File 'ext/socket/constdefs.c', line 2912
Integrated Services Digital Network
INTEGER2NUM(PF_ISDN)
-
PF_ISO =
# File 'ext/socket/constdefs.c', line 2708
ISO Open Systems Interconnection protocols
INTEGER2NUM(PF_ISO)
-
PF_KCM =
# File 'ext/socket/constdefs.c', line 3188
KCM (kernel connection multiplexor) interface
INTEGER2NUM(PF_KCM)
-
PF_KEY =
# File 'ext/socket/constdefs.c', line 3044
Key management protocol, originally developed for usage with IPsec
INTEGER2NUM(PF_KEY)
-
PF_LAT =
# File 'ext/socket/constdefs.c', line 2816
Local Area Transport protocol
INTEGER2NUM(PF_LAT)
-
PF_LINK =
# File 'ext/socket/constdefs.c', line 2852
Link layer interface
INTEGER2NUM(PF_LINK)
-
PF_LLC =
# File 'ext/socket/constdefs.c', line 3092
Logical link control (IEEE 802.2 LLC) protocol
INTEGER2NUM(PF_LLC)
-
PF_LOCAL =
# File 'ext/socket/constdefs.c', line 2648
Host-internal protocols
INTEGER2NUM(PF_LOCAL)
-
PF_MAX =
# File 'ext/socket/constdefs.c', line 2996
Maximum address family for this platform
INTEGER2NUM(PF_MAX)
-
PF_MPLS =
# File 'ext/socket/constdefs.c', line 3116
Multiprotocol Label Switching
INTEGER2NUM(PF_MPLS)
-
PF_NATM =
# File 'ext/socket/constdefs.c', line 2924
Native ATM access
INTEGER2NUM(PF_NATM)
-
PF_NDRV =
# File 'ext/socket/constdefs.c', line 2900
Network driver raw access
INTEGER2NUM(PF_NDRV)
-
PF_NETBIOS =
# File 'ext/socket/constdefs.c', line 2948
NetBIOS
INTEGER2NUM(PF_NETBIOS)
-
PF_NETGRAPH =
# File 'ext/socket/constdefs.c', line 2984
Netgraph sockets
INTEGER2NUM(PF_NETGRAPH)
-
PF_NETLINK =
# File 'ext/socket/constdefs.c', line 3056
Kernel user interface device
INTEGER2NUM(PF_NETLINK)
-
PF_NS =
# File 'ext/socket/constdefs.c', line 2696
XEROX NS protocols
INTEGER2NUM(PF_NS)
-
PF_OSI =
# File 'ext/socket/constdefs.c', line 2720
ISO Open Systems Interconnection protocols
INTEGER2NUM(PF_OSI)
-
PF_PACKET =
# File 'ext/socket/constdefs.c', line 3008
Direct link-layer access
INTEGER2NUM(PF_PACKET)
-
PF_PIP =
# File 'ext/socket/constdefs.c', line 3032
Help Identify PIP packets
INTEGER2NUM(PF_PIP)
-
PF_PPP =
# File 'ext/socket/constdefs.c', line 2960
Point-to-Point Protocol
INTEGER2NUM(PF_PPP)
-
PF_PPPOX =
# File 'ext/socket/constdefs.c', line 3080
Generic PPP transport layer, for setting up L2 tunnels (L2TP and PPPoE)
INTEGER2NUM(PF_PPPOX)
-
PF_PUP =
# File 'ext/socket/constdefs.c', line 2672
PARC Universal Packet protocol
INTEGER2NUM(PF_PUP)
-
PF_RDS =
# File 'ext/socket/constdefs.c', line 3068
Reliable Datagram Sockets (RDS) protocol
INTEGER2NUM(PF_RDS)
-
PF_ROUTE =
# File 'ext/socket/constdefs.c', line 2840
Internal routing protocol
INTEGER2NUM(PF_ROUTE)
-
PF_RTIP =
# File 'ext/socket/constdefs.c', line 3026
Help Identify RTIP packets
INTEGER2NUM(PF_RTIP)
-
PF_SIP =
# File 'ext/socket/constdefs.c', line 2888
Simple Internet Protocol
INTEGER2NUM(PF_SIP)
-
PF_SNA =
# File 'ext/socket/constdefs.c', line 2768
IBM SNA protocol
INTEGER2NUM(PF_SNA)
-
PF_SYSTEM =
# File 'ext/socket/constdefs.c', line 2936
Kernel event messages
INTEGER2NUM(PF_SYSTEM)
-
PF_TIPC =
# File 'ext/socket/constdefs.c', line 3140
TIPC, “cluster domain sockets” protocol
INTEGER2NUM(PF_TIPC)
-
PF_UNIX =
# File 'ext/socket/constdefs.c', line 2600
UNIX sockets
INTEGER2NUM(PF_UNIX)
-
PF_UNSPEC =
# File 'ext/socket/constdefs.c', line 2560
Unspecified protocol, any supported address family
INTEGER2NUM(PF_UNSPEC)
-
PF_VSOCK =
# File 'ext/socket/constdefs.c', line 3176
VSOCK (originally “VMWare VSockets”) protocol for hypervisor-guest communication
INTEGER2NUM(PF_VSOCK)
-
PF_XDP =
# File 'ext/socket/constdefs.c', line 3200
XDP (express data path) interface
INTEGER2NUM(PF_XDP)
-
PF_XTP =
# File 'ext/socket/constdefs.c', line 3020
eXpress Transfer Protocol
INTEGER2NUM(PF_XTP)
-
RESOLUTION_DELAY =
private
# File 'ext/socket/lib/socket.rb', line 6020.05 -
SCM_BINTIME =
# File 'ext/socket/constdefs.c', line 5010
Timestamp (bintime)
INTEGER2NUM(SCM_BINTIME)
-
SCM_CREDENTIALS =
# File 'ext/socket/constdefs.c', line 5016
The sender’s credentials
INTEGER2NUM(SCM_CREDENTIALS)
-
SCM_CREDS =
# File 'ext/socket/constdefs.c', line 5022
Process credentials
INTEGER2NUM(SCM_CREDS)
-
SCM_RIGHTS =
# File 'ext/socket/constdefs.c', line 4986
Access rights
INTEGER2NUM(SCM_RIGHTS)
-
SCM_TIMESTAMP =
# File 'ext/socket/constdefs.c', line 4992
Timestamp (timeval)
INTEGER2NUM(SCM_TIMESTAMP)
-
SCM_TIMESTAMPING =
# File 'ext/socket/constdefs.c', line 5004
Timestamp (timespec list) (Linux 2.6.30)
INTEGER2NUM(SCM_TIMESTAMPING)
-
SCM_TIMESTAMPNS =
# File 'ext/socket/constdefs.c', line 4998
Timespec (timespec)
INTEGER2NUM(SCM_TIMESTAMPNS)
-
SCM_UCRED =
# File 'ext/socket/constdefs.c', line 5028
User credentials
INTEGER2NUM(SCM_UCRED)
-
SCM_WIFI_STATUS =
# File 'ext/socket/constdefs.c', line 5034
Wifi status (Linux 3.3)
INTEGER2NUM(SCM_WIFI_STATUS)
-
SHUT_RD =
# File 'ext/socket/constdefs.c', line 4706
Shut down the reading side of the socket
INTEGER2NUM(SHUT_RD)
-
SHUT_RDWR =
# File 'ext/socket/constdefs.c', line 4718
Shut down the both sides of the socket
INTEGER2NUM(SHUT_RDWR)
-
SHUT_WR =
# File 'ext/socket/constdefs.c', line 4712
Shut down the writing side of the socket
INTEGER2NUM(SHUT_WR)
-
SOCK_CLOEXEC =
# File 'ext/socket/constdefs.c', line 2548
Set the close-on-exec (FD_CLOEXEC) flag on the new file descriptor.
INTEGER2NUM(SOCK_CLOEXEC)
-
SOCK_DGRAM =
# File 'ext/socket/constdefs.c', line 2512
A datagram socket provides connectionless, unreliable messaging
INTEGER2NUM(SOCK_DGRAM)
-
SOCK_NONBLOCK =
# File 'ext/socket/constdefs.c', line 2542
Set the O_NONBLOCK file status flag on the open file description (see open(2)) referred to by the new file descriptor.
INTEGER2NUM(SOCK_NONBLOCK)
-
SOCK_PACKET =
# File 'ext/socket/constdefs.c', line 2536
Device-level packet access
INTEGER2NUM(SOCK_PACKET)
-
SOCK_RAW =
# File 'ext/socket/constdefs.c', line 2518
A raw socket provides low-level access for direct access or implementing network protocols
INTEGER2NUM(SOCK_RAW)
-
SOCK_RDM =
# File 'ext/socket/constdefs.c', line 2524
A reliable datagram socket provides reliable delivery of messages
INTEGER2NUM(SOCK_RDM)
-
SOCK_SEQPACKET =
# File 'ext/socket/constdefs.c', line 2530
A sequential packet socket provides sequenced, reliable two-way connection for datagrams
INTEGER2NUM(SOCK_SEQPACKET)
-
SOCK_STREAM =
# File 'ext/socket/constdefs.c', line 2506
A stream socket provides a sequenced, reliable two-way connection for a byte stream
INTEGER2NUM(SOCK_STREAM)
-
SOL_ATALK =
# File 'ext/socket/constdefs.c', line 3374
AppleTalk socket options
INTEGER2NUM(SOL_ATALK)
-
SOL_AX25 =
# File 'ext/socket/constdefs.c', line 3368
AX.25socket optionsINTEGER2NUM(SOL_AX25)
-
SOL_IP =
# File 'ext/socket/constdefs.c', line 3356
IP socket options
INTEGER2NUM(SOL_IP)
-
SOL_IPX =
# File 'ext/socket/constdefs.c', line 3362
IPX socket options
INTEGER2NUM(SOL_IPX)
-
SOL_SOCKET =
# File 'ext/socket/constdefs.c', line 3350
Socket-level options
INTEGER2NUM(SOL_SOCKET)
-
SOL_TCP =
# File 'ext/socket/constdefs.c', line 3380
TCP socket options
INTEGER2NUM(SOL_TCP)
-
SOL_UDP =
# File 'ext/socket/constdefs.c', line 3386
UDP socket options
INTEGER2NUM(SOL_UDP)
-
SOMAXCONN =
# File 'ext/socket/constdefs.c', line 4980
Maximum connection requests that may be queued for a socket
INTEGER2NUM(SOMAXCONN)
-
SOPRI_BACKGROUND =
# File 'ext/socket/constdefs.c', line 4328
Background socket priority
INTEGER2NUM(SOPRI_BACKGROUND)
-
SOPRI_INTERACTIVE =
# File 'ext/socket/constdefs.c', line 4316
Interactive socket priority
INTEGER2NUM(SOPRI_INTERACTIVE)
-
SOPRI_NORMAL =
# File 'ext/socket/constdefs.c', line 4322
Normal socket priority
INTEGER2NUM(SOPRI_NORMAL)
-
SO_ACCEPTCONN =
# File 'ext/socket/constdefs.c', line 4052
Socket has had listen() called on it
INTEGER2NUM(SO_ACCEPTCONN)
-
SO_ACCEPTFILTER =
# File 'ext/socket/constdefs.c', line 4064
There is an accept filter
INTEGER2NUM(SO_ACCEPTFILTER)
-
SO_ALLZONES =
# File 'ext/socket/constdefs.c', line 4190
Bypass zone boundaries
INTEGER2NUM(SO_ALLZONES)
-
SO_ATTACH_FILTER =
# File 'ext/socket/constdefs.c', line 4136
Attach an accept filter
INTEGER2NUM(SO_ATTACH_FILTER)
-
SO_BINDTODEVICE =
# File 'ext/socket/constdefs.c', line 4130
Only send packets from the given interface
INTEGER2NUM(SO_BINDTODEVICE)
-
SO_BINTIME =
# File 'ext/socket/constdefs.c', line 4172
Receive timestamp with datagrams (bintime)
INTEGER2NUM(SO_BINTIME)
-
SO_BPF_EXTENSIONS =
# File 'ext/socket/constdefs.c', line 4280
Query supported BPF extensions (Linux 3.14)
INTEGER2NUM(SO_BPF_EXTENSIONS)
-
SO_BROADCAST =
# File 'ext/socket/constdefs.c', line 3956
Permit sending of broadcast messages
INTEGER2NUM(SO_BROADCAST)
-
SO_BUSY_POLL =
# File 'ext/socket/constdefs.c', line 4268
Set the threshold in microseconds for low latency polling (Linux 3.11)
INTEGER2NUM(SO_BUSY_POLL)
-
SO_CONNECT_TIME =
# File 'ext/socket/constdefs.c', line 4310
Returns the number of seconds a socket has been connected. This option is only valid for connection-oriented protocols (Windows)
INTEGER2NUM(SO_CONNECT_TIME)
-
SO_DEBUG =
# File 'ext/socket/constdefs.c', line 3920
Debug info recording
INTEGER2NUM(SO_DEBUG)
-
SO_DETACH_FILTER =
# File 'ext/socket/constdefs.c', line 4142
Detach an accept filter
INTEGER2NUM(SO_DETACH_FILTER)
-
SO_DOMAIN =
# File 'ext/socket/constdefs.c', line 4226
Domain given for socket() (Linux 2.6.32)
INTEGER2NUM(SO_DOMAIN)
-
SO_DONTROUTE =
# File 'ext/socket/constdefs.c', line 3950
Use interface addresses
INTEGER2NUM(SO_DONTROUTE)
-
SO_DONTTRUNC =
# File 'ext/socket/constdefs.c', line 4076
Retain unread data
INTEGER2NUM(SO_DONTTRUNC)
-
SO_ERROR =
# File 'ext/socket/constdefs.c', line 3944
Get and clear the error status
INTEGER2NUM(SO_ERROR)
-
SO_GET_FILTER =
# File 'ext/socket/constdefs.c', line 4148
Obtain filter set by SO_ATTACH_FILTER (Linux 3.8)
INTEGER2NUM(SO_GET_FILTER)
-
SO_INCOMING_CPU =
# File 'ext/socket/constdefs.c', line 4298
Receive the cpu attached to the socket (Linux 3.19)
INTEGER2NUM(SO_INCOMING_CPU)
-
SO_INCOMING_NAPI_ID =
# File 'ext/socket/constdefs.c', line 4304
Receive the napi ID attached to a RX queue (Linux 4.12)
INTEGER2NUM(SO_INCOMING_NAPI_ID)
-
SO_KEEPALIVE =
# File 'ext/socket/constdefs.c', line 3986
Keep connections alive
INTEGER2NUM(SO_KEEPALIVE)
-
SO_LINGER =
# File 'ext/socket/constdefs.c', line 4010
Linger on close if data is present
INTEGER2NUM(SO_LINGER)
-
SO_LOCK_FILTER =
# File 'ext/socket/constdefs.c', line 4256
Lock the filter attached to a socket (Linux 3.9)
INTEGER2NUM(SO_LOCK_FILTER)
-
SO_MAC_EXEMPT =
# File 'ext/socket/constdefs.c', line 4184
Mandatory Access Control exemption for unlabeled peers
INTEGER2NUM(SO_MAC_EXEMPT)
-
SO_MARK =
# File 'ext/socket/constdefs.c', line 4208
Set the mark for mark-based routing (Linux 2.6.25)
INTEGER2NUM(SO_MARK)
-
SO_MAX_PACING_RATE =
# File 'ext/socket/constdefs.c', line 4274
Cap the rate computed by transport layer. [bytes per second] (Linux 3.13)
INTEGER2NUM(SO_MAX_PACING_RATE)
-
SO_NKE =
# File 'ext/socket/constdefs.c', line 4100
Install socket-level Network Kernel Extension
INTEGER2NUM(SO_NKE)
-
SO_NOFCS =
# File 'ext/socket/constdefs.c', line 4250
Set netns of a socket (Linux 3.4)
INTEGER2NUM(SO_NOFCS)
-
SO_NOSIGPIPE =
# File 'ext/socket/constdefs.c', line 4106
Don’t SIGPIPE on EPIPE
INTEGER2NUM(SO_NOSIGPIPE)
-
SO_NO_CHECK =
# File 'ext/socket/constdefs.c', line 3998
Disable checksums
INTEGER2NUM(SO_NO_CHECK)
-
SO_NREAD =
# File 'ext/socket/constdefs.c', line 4094
Get first packet byte count
INTEGER2NUM(SO_NREAD)
-
SO_OOBINLINE =
# File 'ext/socket/constdefs.c', line 3992
Leave received out-of-band data in-line
INTEGER2NUM(SO_OOBINLINE)
-
SO_PASSCRED =
# File 'ext/socket/constdefs.c', line 4016
Receive SCM_CREDENTIALS messages
INTEGER2NUM(SO_PASSCRED)
-
SO_PASSSEC =
# File 'ext/socket/constdefs.c', line 4202
Toggle security context passing (Linux 2.6.18)
INTEGER2NUM(SO_PASSSEC)
-
SO_PEEK_OFF =
# File 'ext/socket/constdefs.c', line 4244
Set the peek offset (Linux 3.4)
INTEGER2NUM(SO_PEEK_OFF)
-
SO_PEERCRED =
# File 'ext/socket/constdefs.c', line 4022
The credentials of the foreign process connected to this socket
INTEGER2NUM(SO_PEERCRED)
-
SO_PEERNAME =
# File 'ext/socket/constdefs.c', line 4154
Name of the connecting user
INTEGER2NUM(SO_PEERNAME)
-
SO_PEERSEC =
# File 'ext/socket/constdefs.c', line 4196
Obtain the security credentials (Linux 2.6.2)
INTEGER2NUM(SO_PEERSEC)
-
SO_PRIORITY =
# File 'ext/socket/constdefs.c', line 4004
The protocol-defined priority for all packets on this socket
INTEGER2NUM(SO_PRIORITY)
-
SO_PROTOCOL =
# File 'ext/socket/constdefs.c', line 4220
Protocol given for socket() (Linux 2.6.32)
INTEGER2NUM(SO_PROTOCOL)
-
SO_RCVBUF =
# File 'ext/socket/constdefs.c', line 3968
Receive buffer size
INTEGER2NUM(SO_RCVBUF)
-
SO_RCVBUFFORCE =
# File 'ext/socket/constdefs.c', line 3980
Receive buffer size without rmem_max limit (Linux 2.6.14)
INTEGER2NUM(SO_RCVBUFFORCE)
-
SO_RCVLOWAT =
# File 'ext/socket/constdefs.c', line 4028
Receive low-water mark
INTEGER2NUM(SO_RCVLOWAT)
-
SO_RCVTIMEO =
# File 'ext/socket/constdefs.c', line 4040
Receive timeout
INTEGER2NUM(SO_RCVTIMEO)
-
SO_RECVUCRED =
# File 'ext/socket/constdefs.c', line 4178
Receive user credentials with datagram
INTEGER2NUM(SO_RECVUCRED)
-
SO_REUSEADDR =
# File 'ext/socket/constdefs.c', line 3926
Allow local address reuse
INTEGER2NUM(SO_REUSEADDR)
-
SO_REUSEPORT =
# File 'ext/socket/constdefs.c', line 3932
Allow local address and port reuse
INTEGER2NUM(SO_REUSEPORT)
-
SO_RTABLE =
# File 'ext/socket/constdefs.c', line 4292
Set the routing table for this socket (OpenBSD)
INTEGER2NUM(SO_RTABLE)
-
SO_RXQ_OVFL =
# File 'ext/socket/constdefs.c', line 4232
Toggle cmsg for number of packets dropped (Linux 2.6.33)
INTEGER2NUM(SO_RXQ_OVFL)
-
SO_SECURITY_AUTHENTICATION =
# File 'ext/socket/constdefs.c', line 4112
SO_SECURITY_AUTHENTICATIONINTEGER2NUM(SO_SECURITY_AUTHENTICATION)
-
SO_SECURITY_ENCRYPTION_NETWORK =
# File 'ext/socket/constdefs.c', line 4124
SO_SECURITY_ENCRYPTION_NETWORKINTEGER2NUM(SO_SECURITY_ENCRYPTION_NETWORK)
-
SO_SECURITY_ENCRYPTION_TRANSPORT =
# File 'ext/socket/constdefs.c', line 4118
SO_SECURITY_ENCRYPTION_TRANSPORTINTEGER2NUM(SO_SECURITY_ENCRYPTION_TRANSPORT)
-
SO_SELECT_ERR_QUEUE =
# File 'ext/socket/constdefs.c', line 4262
Make select() detect socket error queue with errorfds (Linux 3.10)
INTEGER2NUM(SO_SELECT_ERR_QUEUE)
-
SO_SETFIB =
# File 'ext/socket/constdefs.c', line 4286
Set the associated routing table for the socket (FreeBSD)
INTEGER2NUM(SO_SETFIB)
-
SO_SNDBUF =
# File 'ext/socket/constdefs.c', line 3962
Send buffer size
INTEGER2NUM(SO_SNDBUF)
-
SO_SNDBUFFORCE =
# File 'ext/socket/constdefs.c', line 3974
Send buffer size without wmem_max limit (Linux 2.6.14)
INTEGER2NUM(SO_SNDBUFFORCE)
-
SO_SNDLOWAT =
# File 'ext/socket/constdefs.c', line 4034
Send low-water mark
INTEGER2NUM(SO_SNDLOWAT)
-
SO_SNDTIMEO =
# File 'ext/socket/constdefs.c', line 4046
Send timeout
INTEGER2NUM(SO_SNDTIMEO)
-
SO_TIMESTAMP =
# File 'ext/socket/constdefs.c', line 4160
Receive timestamp with datagrams (timeval)
INTEGER2NUM(SO_TIMESTAMP)
-
SO_TIMESTAMPING =
# File 'ext/socket/constdefs.c', line 4214
Time stamping of incoming and outgoing packets (Linux 2.6.30)
INTEGER2NUM(SO_TIMESTAMPING)
-
SO_TIMESTAMPNS =
# File 'ext/socket/constdefs.c', line 4166
Receive nanosecond timestamp with datagrams (timespec)
INTEGER2NUM(SO_TIMESTAMPNS)
-
SO_TYPE =
# File 'ext/socket/constdefs.c', line 3938
Get the socket type
INTEGER2NUM(SO_TYPE)
-
SO_USELOOPBACK =
# File 'ext/socket/constdefs.c', line 4058
Bypass hardware when possible
INTEGER2NUM(SO_USELOOPBACK)
-
SO_USER_COOKIE =
# File 'ext/socket/constdefs.c', line 4070
Setting an identifier for ipfw purpose mainly
INTEGER2NUM(SO_USER_COOKIE)
-
SO_WANTMORE =
# File 'ext/socket/constdefs.c', line 4082
Give a hint when more data is ready
INTEGER2NUM(SO_WANTMORE)
-
SO_WANTOOBFLAG =
# File 'ext/socket/constdefs.c', line 4088
OOB data is wanted in MSG_FLAG on receive
INTEGER2NUM(SO_WANTOOBFLAG)
-
SO_WIFI_STATUS =
# File 'ext/socket/constdefs.c', line 4238
Toggle cmsg for wifi status (Linux 3.3)
INTEGER2NUM(SO_WIFI_STATUS)
-
TCP_CONGESTION =
# File 'ext/socket/constdefs.c', line 4448
TCP congestion control algorithm (Linux 2.6.13, glibc 2.6)
INTEGER2NUM(TCP_CONGESTION)
-
TCP_CONNECTION_INFO =
# File 'ext/socket/constdefs.c', line 4352
Retrieve information about this socket (macOS)
INTEGER2NUM(TCP_CONNECTION_INFO)
-
TCP_COOKIE_TRANSACTIONS =
# File 'ext/socket/constdefs.c', line 4454
TCP Cookie Transactions (Linux 2.6.33, glibc 2.18)
INTEGER2NUM(TCP_COOKIE_TRANSACTIONS)
-
TCP_CORK =
# File 'ext/socket/constdefs.c', line 4358
Don’t send partial frames (Linux 2.2, glibc 2.2)
INTEGER2NUM(TCP_CORK)
-
TCP_DEFER_ACCEPT =
# File 'ext/socket/constdefs.c', line 4364
Don’t notify a listening socket until data is ready (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_DEFER_ACCEPT)
-
TCP_FASTOPEN =
# File 'ext/socket/constdefs.c', line 4442
Reduce step of the handshake process (Linux 3.7, glibc 2.18)
INTEGER2NUM(TCP_FASTOPEN)
-
TCP_INFO =
# File 'ext/socket/constdefs.c', line 4370
Retrieve information about this socket (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_INFO)
-
TCP_KEEPALIVE =
# File 'ext/socket/constdefs.c', line 4376
Idle time before keepalive probes are sent (macOS)
INTEGER2NUM(TCP_KEEPALIVE)
-
TCP_KEEPCNT =
# File 'ext/socket/constdefs.c', line 4382
Maximum number of keepalive probes allowed before dropping a connection (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_KEEPCNT)
-
TCP_KEEPIDLE =
# File 'ext/socket/constdefs.c', line 4388
Idle time before keepalive probes are sent (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_KEEPIDLE)
-
TCP_KEEPINTVL =
# File 'ext/socket/constdefs.c', line 4394
Time between keepalive probes (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_KEEPINTVL)
-
TCP_LINGER2 =
# File 'ext/socket/constdefs.c', line 4400
Lifetime of orphaned FIN_WAIT2 sockets (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_LINGER2)
-
TCP_MAXSEG =
# File 'ext/socket/constdefs.c', line 4346
Set maximum segment size
INTEGER2NUM(TCP_MAXSEG)
-
TCP_MD5SIG =
# File 'ext/socket/constdefs.c', line 4406
Use MD5 digests (RFC2385, Linux 2.6.20, glibc 2.7)
INTEGER2NUM(TCP_MD5SIG)
-
TCP_NODELAY =
# File 'ext/socket/constdefs.c', line 4340
Don’t delay sending to coalesce packets
INTEGER2NUM(TCP_NODELAY)
-
TCP_NOOPT =
# File 'ext/socket/constdefs.c', line 4412
Don’t use TCP options
INTEGER2NUM(TCP_NOOPT)
-
TCP_NOPUSH =
# File 'ext/socket/constdefs.c', line 4418
Don’t push the last block of write
INTEGER2NUM(TCP_NOPUSH)
-
TCP_QUEUE_SEQ =
# File 'ext/socket/constdefs.c', line 4460
Sequence of a queue for repair mode (Linux 3.5, glibc 2.18)
INTEGER2NUM(TCP_QUEUE_SEQ)
-
TCP_QUICKACK =
# File 'ext/socket/constdefs.c', line 4424
Enable quickack mode (Linux 2.4.4, glibc 2.3)
INTEGER2NUM(TCP_QUICKACK)
-
TCP_REPAIR =
# File 'ext/socket/constdefs.c', line 4466
Repair mode (Linux 3.5, glibc 2.18)
INTEGER2NUM(TCP_REPAIR)
-
TCP_REPAIR_OPTIONS =
# File 'ext/socket/constdefs.c', line 4472
Options for repair mode (Linux 3.5, glibc 2.18)
INTEGER2NUM(TCP_REPAIR_OPTIONS)
-
TCP_REPAIR_QUEUE =
# File 'ext/socket/constdefs.c', line 4478
Queue for repair mode (Linux 3.5, glibc 2.18)
INTEGER2NUM(TCP_REPAIR_QUEUE)
-
TCP_SYNCNT =
# File 'ext/socket/constdefs.c', line 4430
Number of SYN retransmits before a connection is dropped (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_SYNCNT)
-
TCP_THIN_DUPACK =
# File 'ext/socket/constdefs.c', line 4484
Duplicated acknowledgments handling for thin-streams (Linux 2.6.34, glibc 2.18)
INTEGER2NUM(TCP_THIN_DUPACK)
-
TCP_THIN_LINEAR_TIMEOUTS =
# File 'ext/socket/constdefs.c', line 4490
Linear timeouts for thin-streams (Linux 2.6.34, glibc 2.18)
INTEGER2NUM(TCP_THIN_LINEAR_TIMEOUTS)
-
TCP_TIMESTAMP =
# File 'ext/socket/constdefs.c', line 4496
TCP timestamp (Linux 3.9, glibc 2.18)
INTEGER2NUM(TCP_TIMESTAMP)
-
TCP_USER_TIMEOUT =
# File 'ext/socket/constdefs.c', line 4502
Max timeout before a TCP connection is aborted (Linux 2.6.37, glibc 2.18)
INTEGER2NUM(TCP_USER_TIMEOUT)
-
TCP_WINDOW_CLAMP =
# File 'ext/socket/constdefs.c', line 4436
Clamp the size of the advertised window (Linux 2.4, glibc 2.2)
INTEGER2NUM(TCP_WINDOW_CLAMP)
-
UDP_CORK =
# File 'ext/socket/constdefs.c', line 4508
Don’t send partial frames (Linux 2.5.44, glibc 2.11)
INTEGER2NUM(UDP_CORK)
Class Attribute Summary
-
.tcp_fast_fallback ⇒ Boolean
rw
Returns whether Happy Eyeballs Version 2 (RFC 8305), which is provided starting from Ruby 3.4 when using TCPSocket.new and .tcp, is enabled or disabled.
-
.tcp_fast_fallback= ⇒ Boolean
rw
Enable or disable Happy Eyeballs Version 2 (RFC 8305) globally, which is provided starting from Ruby 3.4 when using TCPSocket.new and .tcp.
::BasicSocket - Inherited
| .do_not_reverse_lookup | Gets the global do_not_reverse_lookup flag. |
| .do_not_reverse_lookup= | Sets the global do_not_reverse_lookup flag. |
Class Method Summary
-
.accept_loop(*sockets)
yield socket and client address for each a connection accepted via given sockets.
-
.getaddrinfo(nodename, servname[, family[, socktype[, protocol[, flags[, reverse_lookup]]]]]) ⇒ Array
Obtains address information for nodename:servname.
-
.gethostbyaddr(address_string [, address_family]) ⇒ hostent
Use Addrinfo#getnameinfo instead.
-
.gethostbyname(hostname) ⇒ Array, ...
Use Addrinfo.getaddrinfo instead.
-
.gethostname ⇒ hostname
Returns the hostname.
-
.getifaddrs ⇒ Array, ...
Returns an array of interface addresses.
-
.getnameinfo(sockaddr [, flags]) ⇒ Array, servicename
Obtains name information for sockaddr.
-
.getservbyname(service_name) ⇒ port_number
Obtains the port number for service_name.
-
.getservbyport(port [, protocol_name]) ⇒ service
Obtains the port number for port.
-
.ip_address_list ⇒ Array
Returns local IP addresses as an array.
-
.new(domain, socktype [, protocol]) ⇒ Socket
constructor
Creates a new socket object.
-
.pack_sockaddr_in(port, host) ⇒ sockaddr
Alias for .sockaddr_in.
-
.pack_sockaddr_un(path) ⇒ sockaddr
Alias for .sockaddr_un.
-
.pair(domain, type, protocol) ⇒ Socket
(also: .socketpair)
Creates a pair of sockets connected each other.
-
.sockaddr_in(port, host) ⇒ sockaddr
(also: .pack_sockaddr_in)
Packs port and host as an AF_INET/AF_INET6 sockaddr string.
-
.sockaddr_un(path) ⇒ sockaddr
(also: .pack_sockaddr_un)
Packs path as an AF_UNIX sockaddr string.
-
.socketpair(domain, type, protocol) ⇒ Socket
Alias for .pair.
-
.tcp(host, port, local_host = nil, local_port = nil, [opts]) {|socket| ... }
creates a new socket object connected to host:port using TCP/IP.
-
.tcp_server_loop(host = nil, port, &b)
creates a TCP/IP server on port and calls the block for each connection accepted.
-
.tcp_server_sockets(host = nil, port)
creates TCP/IP server sockets for host and port.
- .tcp_with_fast_fallback(host, port, local_host = nil, local_port = nil, connect_timeout: nil, resolv_timeout: nil, open_timeout: nil)
-
.udp_server_loop(port) {|msg, msg_src| ... }
creates a UDP/IP server on port and calls the block for each message arrived.
-
.udp_server_loop_on(sockets) {|msg, msg_src| ... }
Run UDP/IP server loop on the given sockets.
-
.udp_server_recv(sockets) {|msg, msg_src| ... }
Receive UDP/IP packets from the given sockets.
-
.udp_server_sockets([host, ] port)
Creates UDP/IP sockets for a UDP server.
-
.unix(path)
creates a new socket connected to path using UNIX socket socket.
-
.unix_server_loop(path, &b)
creates a UNIX socket server on path.
-
.unix_server_socket(path)
creates a UNIX server socket on path.
-
.unpack_sockaddr_in(sockaddr) ⇒ Array, ip_address
Unpacks sockaddr into port and ip_address.
-
.unpack_sockaddr_un(sockaddr) ⇒ path
Unpacks sockaddr into path.
- .current_clock_time private
- .expired?(started_at, ends_at) ⇒ Boolean private
- .ip_address?(hostname) ⇒ Boolean private
- .resolve_hostname(family, host, port, hostname_resolution_result) private
- .second_to_timeout(started_at, ends_at) private
- .tcp_without_fast_fallback(host, port, local_host, local_port, connect_timeout:, resolv_timeout:, open_timeout:) private
- .unix_socket_abstract_name?(path) ⇒ Boolean private
- .ip_sockets_port0(ai_list, reuseaddr) Internal use only
- .tcp_server_sockets_port0(host) Internal use only
::BasicSocket - Inherited
| .for_fd | Returns a socket object which contains the file descriptor, fd. |
Instance Attribute Summary
::BasicSocket - Inherited
| #do_not_reverse_lookup | Gets the do_not_reverse_lookup flag of basicsocket. |
| #do_not_reverse_lookup= | Sets the do_not_reverse_lookup flag of basicsocket. |
Instance Method Summary
-
#accept ⇒ Socket, client_addrinfo
Accepts a next connection.
-
#accept_nonblock([options]) ⇒ Socket, client_addrinfo
Accepts an incoming connection using accept(2) after O_NONBLOCK is set for the underlying file descriptor.
-
#bind(local_sockaddr) ⇒ 0
Binds to the given local address.
-
#connect(remote_sockaddr) ⇒ 0
Requests a connection to be made on the given
remote_sockaddr. -
#connect_nonblock(remote_sockaddr, [options]) ⇒ 0
Requests a connection to be made on the given
remote_sockaddrafter O_NONBLOCK is set for the underlying file descriptor. -
#ipv6only!
enable the socket option IPV6_V6ONLY if IPV6_V6ONLY is available.
-
#listen(int) ⇒ 0
Listens for connections, using the specified
intas the backlog. -
#recvfrom(maxlen) ⇒ Array, sender_addrinfo
Receives up to maxlen bytes from
socket. -
#recvfrom_nonblock(maxlen[, flags[, outbuf[, opts]]]) ⇒ Array, sender_addrinfo
Receives up to maxlen bytes from
socketusing recvfrom(2) after O_NONBLOCK is set for the underlying file descriptor. -
#sysaccept ⇒ Socket, client_addrinfo
Accepts an incoming connection returning an array containing the (integer) file descriptor for the incoming connection, client_socket_fd, and an
::Addrinfo, client_addrinfo. - #__accept_nonblock(ex) private Internal use only
- #__connect_nonblock(addr, ex) private Internal use only
- #__recvfrom_nonblock(len, flg, str, ex) private Internal use only
::BasicSocket - Inherited
| #close_read | Disallows further read using shutdown system call. |
| #close_write | Disallows further write using shutdown system call. |
| #connect_address | Returns an address of the socket suitable for connect in the local machine. |
| #getpeereid | Returns the user and group on the peer of the UNIX socket. |
| #getpeername | Returns the remote address of the socket as a sockaddr string. |
| #getsockname | Returns the local address of the socket as a sockaddr string. |
| #getsockopt | Gets a socket option. |
| #local_address | Returns an |
| #recv | Receives a message. |
| #recv_nonblock | Receives up to maxlen bytes from |
| #recvmsg | recvmsg receives a message using recvmsg(2) system call in blocking manner. |
| #recvmsg_nonblock | recvmsg receives a message using recvmsg(2) system call in non-blocking manner. |
| #remote_address | Returns an |
| #send | send mesg via basicsocket. |
| #sendmsg | sendmsg sends a message using sendmsg(2) system call in blocking manner. |
| #sendmsg_nonblock | sendmsg_nonblock sends a message using sendmsg(2) system call in non-blocking manner. |
| #setsockopt | Sets a socket option. |
| #shutdown | Calls shutdown(2) system call. |
| #__recvmsg, #__recvmsg_nonblock, #__sendmsg, #__sendmsg_nonblock, #read_nonblock, #write_nonblock, #__read_nonblock, #__recv_nonblock, #__write_nonblock | |
Constructor Details
.new(domain, socktype [, protocol]) ⇒ Socket
Creates a new socket object.
domain should be a communications domain such as: :INET, :INET6, :UNIX, etc.
socktype should be a socket type such as: :STREAM, :DGRAM, :RAW, etc.
protocol is optional and should be a protocol defined in the domain. If protocol is not given, 0 is used internally.
Socket.new(:INET, :STREAM) # TCP socket
Socket.new(:INET, :DGRAM) # UDP socket
Socket.new(:UNIX, :STREAM) # UNIX stream socket
Socket.new(:UNIX, :DGRAM) # UNIX datagram socket
# File 'ext/socket/socket.c', line 138
static VALUE
sock_initialize(int argc, VALUE *argv, VALUE sock)
{
VALUE domain, type, protocol;
int fd;
int d, t;
rb_scan_args(argc, argv, "21", &domain, &type, &protocol);
if (NIL_P(protocol))
protocol = INT2FIX(0);
setup_domain_and_type(domain, &d, type, &t);
fd = rsock_socket(d, t, NUM2INT(protocol));
if (fd < 0) rb_sys_fail("socket(2)");
return rsock_init_sock(sock, fd);
}
Class Attribute Details
.tcp_fast_fallback ⇒ Boolean (rw)
Returns whether Happy Eyeballs Version 2 (RFC 8305), which is provided starting from Ruby 3.4 when using TCPSocket.new and .tcp, is enabled or disabled.
If true, it is enabled for TCPSocket.new and .tcp. (Note: Happy Eyeballs Version 2 is not provided when using TCPSocket.new on Windows.)
If false, Happy Eyeballs Version 2 is disabled.
For details on Happy Eyeballs Version 2, see Socket.tcp_fast_fallback=.
# File 'ext/socket/socket.c', line 1875
VALUE socket_s_tcp_fast_fallback(VALUE self) {
return rb_ivar_get(rb_cSocket, tcp_fast_fallback);
}
.tcp_fast_fallback= ⇒ Boolean (rw)
Enable or disable Happy Eyeballs Version 2 (RFC 8305) globally, which is provided starting from Ruby 3.4 when using TCPSocket.new and .tcp.
When set to true, the feature is enabled for both TCPSocket.new and .tcp. (Note: This feature is not available when using TCPSocket.new on Windows.)
When set to false, the behavior reverts to that of Ruby 3.3 or earlier.
The default value is true if no value is explicitly set by calling this method. However, when the environment variable RUBY_TCP_NO_FAST_FALLBACK=1 is set, the default is false.
To control the setting on a per-method basis, use the fast_fallback keyword argument for each method.
Happy Eyeballs Version 2
Happy Eyeballs Version 2 (RFC 8305) is an algorithm designed to improve client socket connectivity.
It aims for more reliable and efficient connections by performing hostname resolution and connection attempts in parallel, instead of serially.
Starting from Ruby 3.4, this method operates as follows with this algorithm:
-
Start resolving both IPv6 and IPv4 addresses concurrently.
-
Start connecting to the one of the addresses that are obtained first.
If IPv4 addresses are obtained first, the method waits 50 ms for IPv6 name resolution to prioritize IPv6 connections. -
After starting a connection attempt, wait 250 ms for the connection to be established.
If no connection is established within this time, a new connection is started every 250 ms
until a connection is established or there are no more candidate addresses.
(Although RFC 8305 strictly specifies sorting addresses,
this method only alternates between IPv6 / IPv4 addresses due to the performance concerns) -
Once a connection is established, all remaining connection attempts are canceled.
# File 'ext/socket/socket.c', line 1915
VALUE socket_s_tcp_fast_fallback_set(VALUE self, VALUE value) {
rb_ivar_set(rb_cSocket, tcp_fast_fallback, value);
return value;
}
Class Method Details
.accept_loop(*sockets)
yield socket and client address for each a connection accepted via given sockets.
The arguments are a list of sockets. The individual argument should be a socket or an array of sockets.
This method yields the block sequentially. It means that the next connection is not accepted until the block returns. So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
# File 'ext/socket/lib/socket.rb', line 1241
def self.accept_loop(*sockets) # :yield: socket, client_addrinfo sockets.flatten!(1) if sockets.empty? raise ArgumentError, "no sockets" end loop { readable, _, _ = IO.select(sockets) readable.each {|r| sock, addr = r.accept_nonblock(exception: false) next if sock == :wait_readable yield sock, addr } } end
.current_clock_time (private)
[ GitHub ]# File 'ext/socket/lib/socket.rb', line 985
def self.current_clock_time Process.clock_gettime(Process::CLOCK_MONOTONIC) end
.expired?(started_at, ends_at) ⇒ Boolean (private)
# File 'ext/socket/lib/socket.rb', line 998
def self.expired?(started_at, ends_at) second_to_timeout(started_at, ends_at)&.zero? end
.getaddrinfo(nodename, servname[, family[, socktype[, protocol[, flags[, reverse_lookup]]]]]) ⇒ Array
Obtains address information for nodename:servname.
Note that Addrinfo.getaddrinfo provides the same functionality in an object oriented style.
family should be an address family such as: :INET, :INET6, etc.
socktype should be a socket type such as: :STREAM, :DGRAM, :RAW, etc.
protocol should be a protocol defined in the family, and defaults to 0 for the family.
flags should be bitwise OR of Socket::AI_* constants.
Socket.getaddrinfo("www.ruby-lang.org", "http", nil, :STREAM)
#=> [["AF_INET", 80, "carbon.ruby-lang.org", "221.186.184.68", 2, 1, 6]] # PF_INET/SOCK_STREAM/IPPROTO_TCP
Socket.getaddrinfo("localhost", nil)
#=> [["AF_INET", 0, "localhost", "127.0.0.1", 2, 1, 6], # PF_INET/SOCK_STREAM/IPPROTO_TCP
# ["AF_INET", 0, "localhost", "127.0.0.1", 2, 2, 17], # PF_INET/SOCK_DGRAM/IPPROTO_UDP
# ["AF_INET", 0, "localhost", "127.0.0.1", 2, 3, 0]] # PF_INET/SOCK_RAW/IPPROTO_IP
reverse_lookup directs the form of the third element, and has to be one of below. If reverse_lookup is omitted, the default value is nil.
{true}, {:hostname}: hostname is obtained from numeric address using reverse lookup, which may take a time.
{false}, {:numeric}: hostname is the same as numeric address.
{nil}: obey to the current {do_not_reverse_lookup} flag.
If Addrinfo object is preferred, use Addrinfo.getaddrinfo.
# File 'ext/socket/socket.c', line 1160
static VALUE
sock_s_getaddrinfo(int argc, VALUE *argv, VALUE _)
{
VALUE host, port, family, socktype, protocol, flags, ret, revlookup;
struct addrinfo hints;
struct rb_addrinfo *res;
int norevlookup;
rb_scan_args(argc, argv, "25", &host, &port, &family, &socktype, &protocol, &flags, &revlookup);
MEMZERO(&hints, struct addrinfo, 1);
hints.ai_family = NIL_P(family) ? PF_UNSPEC : rsock_family_arg(family);
if (!NIL_P(socktype)) {
hints.ai_socktype = rsock_socktype_arg(socktype);
}
if (!NIL_P(protocol)) {
hints.ai_protocol = NUM2INT(protocol);
}
if (!NIL_P(flags)) {
hints.ai_flags = NUM2INT(flags);
}
if (NIL_P(revlookup) || !rsock_revlookup_flag(revlookup, &norevlookup)) {
norevlookup = rsock_do_not_reverse_lookup;
}
res = rsock_getaddrinfo(host, port, &hints, 0, 0);
ret = make_addrinfo(res, norevlookup);
rb_freeaddrinfo(res);
return ret;
}
.gethostbyaddr(address_string [, address_family]) ⇒ hostent
Use Addrinfo#getnameinfo instead. This method is deprecated for the following reasons:
-
Uncommon address representation: 4/16-bytes binary string to represent IPv4/IPv6 address.
-
gethostbyaddr() may take a long time and it may block other threads. (GVL cannot be released since gethostbyname() is not thread safe.)
-
This method uses gethostbyname() function already removed from POSIX.
This method obtains the host information for address.
p Socket.gethostbyaddr([221,186,184,68].pack("CCCC"))
#=> ["carbon.ruby-lang.org", [], 2, "\xDD\xBA\xB8D"]
p Socket.gethostbyaddr([127,0,0,1].pack("CCCC"))
["localhost", [], 2, "\x7F\x00\x00\x01"]
p Socket.gethostbyaddr(([0]*15+[1]).pack("C"*16))
#=> ["localhost", ["ip6-localhost", "ip6-loopback"], 10,
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01"]
# File 'ext/socket/socket.c', line 997
static VALUE
sock_s_gethostbyaddr(int argc, VALUE *argv, VALUE _)
{
VALUE addr, family;
struct hostent *h;
char **pch;
VALUE ary, names;
int t = AF_INET;
rb_warn("Socket.gethostbyaddr is deprecated; use Addrinfo#getnameinfo instead.");
rb_scan_args(argc, argv, "11", &addr, &family);
StringValue(addr);
if (!NIL_P(family)) {
t = rsock_family_arg(family);
}
#ifdef AF_INET6
else if (RSTRING_LEN(addr) == 16) {
t = AF_INET6;
}
#endif
h = gethostbyaddr(RSTRING_PTR(addr), RSTRING_SOCKLEN(addr), t);
if (h == NULL) {
#ifdef HAVE_HSTRERROR
extern int h_errno;
rb_raise(rb_eSocket, "%s", (char*)hstrerror(h_errno));
#else
rb_raise(rb_eSocket, "host not found");
#endif
}
ary = rb_ary_new();
rb_ary_push(ary, rb_str_new2(h->h_name));
names = rb_ary_new();
rb_ary_push(ary, names);
if (h->h_aliases != NULL) {
for (pch = h->h_aliases; *pch; pch++) {
rb_ary_push(names, rb_str_new2(*pch));
}
}
rb_ary_push(ary, INT2NUM(h->h_addrtype));
#ifdef h_addr
for (pch = h->h_addr_list; *pch; pch++) {
rb_ary_push(ary, rb_str_new(*pch, h->h_length));
}
#else
rb_ary_push(ary, rb_str_new(h->h_addr, h->h_length));
#endif
return ary;
}
.gethostbyname(hostname) ⇒ Array, ...
Use Addrinfo.getaddrinfo instead. This method is deprecated for the following reasons:
-
The 3rd element of the result is the address family of the first address. The address families of the rest of the addresses are not returned.
-
Uncommon address representation: 4/16-bytes binary string to represent IPv4/IPv6 address.
-
gethostbyname() may take a long time and it may block other threads. (GVL cannot be released since gethostbyname() is not thread safe.)
-
This method uses gethostbyname() function already removed from POSIX.
This method obtains the host information for hostname.
p Socket.gethostbyname("hal") #=> ["localhost", ["hal"], 2, "\x7F\x00\x00\x01"]
# File 'ext/socket/socket.c', line 963
static VALUE
sock_s_gethostbyname(VALUE obj, VALUE host)
{
rb_warn("Socket.gethostbyname is deprecated; use Addrinfo.getaddrinfo instead.");
struct rb_addrinfo *res =
rsock_addrinfo(host, Qnil, AF_UNSPEC, SOCK_STREAM, AI_CANONNAME, 0);
return rsock_make_hostent(host, res, sock_sockaddr);
}
.gethostname ⇒ hostname
Returns the hostname.
p Socket.gethostname #=> "hal"
Note that it is not guaranteed to be able to convert to IP address using gethostbyname, getaddrinfo, etc. If you need local IP address, use .ip_address_list.
# File 'ext/socket/socket.c', line 846
static VALUE
sock_gethostname(VALUE obj)
{
#if defined(NI_MAXHOST)
# define RUBY_MAX_HOST_NAME_LEN NI_MAXHOST
#elif defined(HOST_NAME_MAX)
# define RUBY_MAX_HOST_NAME_LEN HOST_NAME_MAX
#else
# define RUBY_MAX_HOST_NAME_LEN 1024
#endif
long len = RUBY_MAX_HOST_NAME_LEN;
VALUE name;
name = rb_str_new(0, len);
while (gethostname(RSTRING_PTR(name), len) < 0) {
int e = errno;
switch (e) {
case ENAMETOOLONG:
#ifdef __linux__
case EINVAL:
/* glibc before version 2.1 uses EINVAL instead of ENAMETOOLONG */
#endif
break;
default:
rb_syserr_fail(e, "gethostname(3)");
}
rb_str_modify_expand(name, len);
len += len;
}
rb_str_resize(name, strlen(RSTRING_PTR(name)));
return name;
}
.getifaddrs ⇒ Array, ...
Returns an array of interface addresses. An element of the array is an instance of ::Socket::Ifaddr.
This method can be used to find multicast-enabled interfaces:
pp Socket.getifaddrs.reject {|ifaddr|
!ifaddr.addr.ip? || (ifaddr.flags & Socket::IFF_MULTICAST == 0)
}.map {|ifaddr| [ifaddr.name, ifaddr.ifindex, ifaddr.addr] }
#=> [["eth0", 2, #<Addrinfo: 221.186.184.67>],
# ["eth0", 2, #<Addrinfo: fe80::216:3eff:fe95:88bb%eth0>]]
Example result on GNU/Linux:
pp Socket.getifaddrs
#=> [#<Socket::Ifaddr lo UP,LOOPBACK,RUNNING,0x10000 PACKET[protocol=0 lo hatype=772 HOST hwaddr=00:00:00:00:00:00]>,
# #<Socket::Ifaddr eth0 UP,BROADCAST,RUNNING,MULTICAST,0x10000 PACKET[protocol=0 eth0 hatype=1 HOST hwaddr=00:16:3e:95:88:bb] broadcast=PACKET[protocol=0 eth0 hatype=1 HOST hwaddr=ff:ff:ff:ff:ff:ff]>,
# #<Socket::Ifaddr sit0 NOARP PACKET[protocol=0 sit0 hatype=776 HOST hwaddr=00:00:00:00]>,
# #<Socket::Ifaddr lo UP,LOOPBACK,RUNNING,0x10000 127.0.0.1 netmask=255.0.0.0>,
# #<Socket::Ifaddr eth0 UP,BROADCAST,RUNNING,MULTICAST,0x10000 221.186.184.67 netmask=255.255.255.240 broadcast=221.186.184.79>,
# #<Socket::Ifaddr lo UP,LOOPBACK,RUNNING,0x10000 ::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff>,
# #<Socket::Ifaddr eth0 UP,BROADCAST,RUNNING,MULTICAST,0x10000 fe80::216:3eff:fe95:88bb%eth0 netmask=ffff:ffff:ffff:ffff::>]
Example result on FreeBSD:
pp Socket.getifaddrs
#=> [#<Socket::Ifaddr usbus0 UP,0x10000 LINK[usbus0]>,
# #<Socket::Ifaddr re0 UP,BROADCAST,RUNNING,MULTICAST,0x800 LINK[re0 3a:d0:40:9a:fe:e8]>,
# #<Socket::Ifaddr re0 UP,BROADCAST,RUNNING,MULTICAST,0x800 10.250.10.18 netmask=255.255.255.? (7 bytes for 16 bytes sockaddr_in) broadcast=10.250.10.255>,
# #<Socket::Ifaddr re0 UP,BROADCAST,RUNNING,MULTICAST,0x800 fe80:2::38d0:40ff:fe9a:fee8 netmask=ffff:ffff:ffff:ffff::>,
# #<Socket::Ifaddr re0 UP,BROADCAST,RUNNING,MULTICAST,0x800 2001:2e8:408:10::12 netmask=UNSPEC>,
# #<Socket::Ifaddr plip0 POINTOPOINT,MULTICAST,0x800 LINK[plip0]>,
# #<Socket::Ifaddr lo0 UP,LOOPBACK,RUNNING,MULTICAST LINK[lo0]>,
# #<Socket::Ifaddr lo0 UP,LOOPBACK,RUNNING,MULTICAST ::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff>,
# #<Socket::Ifaddr lo0 UP,LOOPBACK,RUNNING,MULTICAST fe80:4::1 netmask=ffff:ffff:ffff:ffff::>,
# #<Socket::Ifaddr lo0 UP,LOOPBACK,RUNNING,MULTICAST 127.0.0.1 netmask=255.?.?.? (5 bytes for 16 bytes sockaddr_in)>]
# File 'ext/socket/ifaddr.c', line 446
static VALUE
socket_s_getifaddrs(VALUE self)
{
return rsock_getifaddrs();
}
.getnameinfo(sockaddr [, flags]) ⇒ Array, servicename
Obtains name information for sockaddr.
sockaddr should be one of follows.
-
packed sockaddr string such as .sockaddr_in(80, “127.0.0.1”)
-
3-elements array such as [“AF_INET”, 80, “127.0.0.1”]
-
4-elements array such as [“AF_INET”, 80, ignored, “127.0.0.1”]
flags should be bitwise OR of Socket::NI_* constants.
Note: The last form is compatible with IPSocket#addr and IPSocket#peeraddr.
Socket.getnameinfo(Socket.sockaddr_in(80, "127.0.0.1")) #=> ["localhost", "www"]
Socket.getnameinfo(["AF_INET", 80, "127.0.0.1"]) #=> ["localhost", "www"]
Socket.getnameinfo(["AF_INET", 80, "localhost", "127.0.0.1"]) #=> ["localhost", "www"]
If Addrinfo object is preferred, use Addrinfo#getnameinfo.
# File 'ext/socket/socket.c', line 1215
static VALUE
sock_s_getnameinfo(int argc, VALUE *argv, VALUE _)
{
VALUE sa, af = Qnil, host = Qnil, port = Qnil, flags, tmp;
char hbuf[1024], pbuf[1024];
int fl;
struct rb_addrinfo *res = NULL;
struct addrinfo hints, *r;
int error, saved_errno;
union_sockaddr ss;
struct sockaddr *sap;
socklen_t salen;
sa = flags = Qnil;
rb_scan_args(argc, argv, "11", &sa, &flags);
fl = 0;
if (!NIL_P(flags)) {
fl = NUM2INT(flags);
}
tmp = rb_check_sockaddr_string_type(sa);
if (!NIL_P(tmp)) {
sa = tmp;
if (sizeof(ss) < (size_t)RSTRING_LEN(sa)) {
rb_raise(rb_eTypeError, "sockaddr length too big");
}
memcpy(&ss, RSTRING_PTR(sa), RSTRING_LEN(sa));
if (!VALIDATE_SOCKLEN(&ss.addr, RSTRING_LEN(sa))) {
rb_raise(rb_eTypeError, "sockaddr size differs - should not happen");
}
sap = &ss.addr;
salen = RSTRING_SOCKLEN(sa);
goto call_nameinfo;
}
tmp = rb_check_array_type(sa);
if (!NIL_P(tmp)) {
sa = tmp;
MEMZERO(&hints, struct addrinfo, 1);
if (RARRAY_LEN(sa) == 3) {
af = RARRAY_AREF(sa, 0);
port = RARRAY_AREF(sa, 1);
host = RARRAY_AREF(sa, 2);
}
else if (RARRAY_LEN(sa) >= 4) {
af = RARRAY_AREF(sa, 0);
port = RARRAY_AREF(sa, 1);
host = RARRAY_AREF(sa, 3);
if (NIL_P(host)) {
host = RARRAY_AREF(sa, 2);
}
else {
/*
* 4th element holds numeric form, don't resolve.
* see rsock_ipaddr().
*/
#ifdef AI_NUMERICHOST /* AIX 4.3.3 doesn't have AI_NUMERICHOST. */
hints.ai_flags |= AI_NUMERICHOST;
#endif
}
}
else {
rb_raise(rb_eArgError, "array size should be 3 or 4, %ld given",
RARRAY_LEN(sa));
}
hints.ai_socktype = (fl & NI_DGRAM) ? SOCK_DGRAM : SOCK_STREAM;
/* af */
hints.ai_family = NIL_P(af) ? PF_UNSPEC : rsock_family_arg(af);
res = rsock_getaddrinfo(host, port, &hints, 0, 0);
sap = res->ai->ai_addr;
salen = res->ai->ai_addrlen;
}
else {
rb_raise(rb_eTypeError, "expecting String or Array");
}
call_nameinfo:
error = rb_getnameinfo(sap, salen, hbuf, sizeof(hbuf),
pbuf, sizeof(pbuf), fl);
if (error) goto error_exit_name;
if (res) {
for (r = res->ai->ai_next; r; r = r->ai_next) {
char hbuf2[1024], pbuf2[1024];
sap = r->ai_addr;
salen = r->ai_addrlen;
error = rb_getnameinfo(sap, salen, hbuf2, sizeof(hbuf2),
pbuf2, sizeof(pbuf2), fl);
if (error) goto error_exit_name;
if (strcmp(hbuf, hbuf2) != 0|| strcmp(pbuf, pbuf2) != 0) {
rb_freeaddrinfo(res);
rb_raise(rb_eSocket, "sockaddr resolved to multiple nodename");
}
}
rb_freeaddrinfo(res);
}
return rb_assoc_new(rb_str_new2(hbuf), rb_str_new2(pbuf));
error_exit_name:
saved_errno = errno;
if (res) rb_freeaddrinfo(res);
errno = saved_errno;
rsock_raise_resolution_error("getnameinfo", error);
UNREACHABLE_RETURN(Qnil);
}
.getservbyname(service_name) ⇒ port_number
.getservbyname(service_name, protocol_name) ⇒ port_number
port_number
.getservbyname(service_name, protocol_name) ⇒ port_number
Obtains the port number for service_name.
If protocol_name is not given, “tcp” is assumed.
Socket.getservbyname("smtp") #=> 25
Socket.getservbyname("shell") #=> 514
Socket.getservbyname("syslog", "udp") #=> 514
# File 'ext/socket/socket.c', line 1061
static VALUE
sock_s_getservbyname(int argc, VALUE *argv, VALUE _)
{
VALUE service, proto;
struct servent *sp;
long port;
const char *servicename, *protoname = "tcp";
rb_scan_args(argc, argv, "11", &service, &proto);
StringValue(service);
if (!NIL_P(proto)) StringValue(proto);
servicename = StringValueCStr(service);
if (!NIL_P(proto)) protoname = StringValueCStr(proto);
sp = getservbyname(servicename, protoname);
if (sp) {
port = ntohs(sp->s_port);
}
else {
char *end;
port = STRTOUL(servicename, &end, 0);
if (*end != '\0') {
rb_raise(rb_eSocket, "no such service %s/%s", servicename, protoname);
}
}
return INT2FIX(port);
}
.getservbyport(port [, protocol_name]) ⇒ service
Obtains the port number for port.
If protocol_name is not given, “tcp” is assumed.
Socket.getservbyport(80) #=> "www"
Socket.getservbyport(514, "tcp") #=> "shell"
Socket.getservbyport(514, "udp") #=> "syslog"
# File 'ext/socket/socket.c', line 1102
static VALUE
sock_s_getservbyport(int argc, VALUE *argv, VALUE _)
{
VALUE port, proto;
struct servent *sp;
long portnum;
const char *protoname = "tcp";
rb_scan_args(argc, argv, "11", &port, &proto);
portnum = NUM2LONG(port);
if (portnum != (uint16_t)portnum) {
const char *s = portnum > 0 ? "big" : "small";
rb_raise(rb_eRangeError, "integer %ld too %s to convert into `int16_t'", portnum, s);
}
if (!NIL_P(proto)) protoname = StringValueCStr(proto);
sp = getservbyport((int)htons((uint16_t)portnum), protoname);
if (!sp) {
rb_raise(rb_eSocket, "no such service for port %d/%s", (int)portnum, protoname);
}
return rb_str_new2(sp->s_name);
}
.ip_address?(hostname) ⇒ Boolean (private)
# File 'ext/socket/lib/socket.rb', line 970
def self.ip_address?(hostname) hostname.match?(IPV6_ADDRESS_FORMAT) || hostname.match?(/\A([0-9]{1,3}\.){3}[0-9]{1,3}\z/) end
.ip_address_list ⇒ Array
Returns local IP addresses as an array.
The array contains ::Addrinfo objects.
pp Socket.ip_address_list
#=> [#<Addrinfo: 127.0.0.1>,
#<Addrinfo: 192.168.0.128>,
#<Addrinfo: ::1>,
#...]
# File 'ext/socket/socket.c', line 1552
static VALUE
socket_s_ip_address_list(VALUE self)
{
#if defined(HAVE_GETIFADDRS)
struct ifaddrs *ifp = NULL;
struct ifaddrs *p;
int ret;
VALUE list;
ret = getifaddrs(&ifp);
if (ret == -1) {
rb_sys_fail("getifaddrs");
}
list = rb_ary_new();
for (p = ifp; p; p = p->ifa_next) {
if (p->ifa_addr != NULL && IS_IP_FAMILY(p->ifa_addr->sa_family)) {
struct sockaddr *addr = p->ifa_addr;
#if defined(AF_INET6) && defined(__sun)
/*
* OpenIndiana SunOS 5.11 getifaddrs() returns IPv6 link local
* address with sin6_scope_id == 0.
* So fill it from the interface name (ifa_name).
*/
struct sockaddr_in6 addr6;
if (addr->sa_family == AF_INET6) {
socklen_t len = (socklen_t)sizeof(struct sockaddr_in6);
memcpy(&addr6, addr, len);
addr = (struct sockaddr *)&addr6;
if (IN6_IS_ADDR_LINKLOCAL(&addr6.sin6_addr) &&
addr6.sin6_scope_id == 0) {
unsigned int ifindex = if_nametoindex(p->ifa_name);
if (ifindex != 0) {
addr6.sin6_scope_id = ifindex;
}
}
}
#endif
rb_ary_push(list, sockaddr_obj(addr, sockaddr_len(addr)));
}
}
freeifaddrs(ifp);
return list;
#elif defined(SIOCGLIFCONF) && defined(SIOCGLIFNUM)
/* Solaris if_tcp(7P) */
int fd = -1;
int ret;
struct lifnum ln;
struct lifconf lc;
const char *reason = NULL;
int save_errno;
int i;
VALUE list = Qnil;
lc.lifc_buf = NULL;
fd = socket(AF_INET, SOCK_DGRAM, 0);
if (fd == -1)
rb_sys_fail("socket(2)");
memset(&ln, 0, sizeof(ln));
ln.lifn_family = AF_UNSPEC;
ret = ioctl(fd, SIOCGLIFNUM, &ln);
if (ret == -1) {
reason = "SIOCGLIFNUM";
goto finish;
}
memset(&lc, 0, sizeof(lc));
lc.lifc_family = AF_UNSPEC;
lc.lifc_flags = 0;
lc.lifc_len = sizeof(struct lifreq) * ln.lifn_count;
lc.lifc_req = xmalloc(lc.lifc_len);
ret = ioctl(fd, SIOCGLIFCONF, &lc);
if (ret == -1) {
reason = "SIOCGLIFCONF";
goto finish;
}
list = rb_ary_new();
for (i = 0; i < ln.lifn_count; i++) {
struct lifreq *req = &lc.lifc_req[i];
if (IS_IP_FAMILY(req->lifr_addr.ss_family)) {
if (req->lifr_addr.ss_family == AF_INET6 &&
IN6_IS_ADDR_LINKLOCAL(&((struct sockaddr_in6 *)(&req->lifr_addr))->sin6_addr) &&
((struct sockaddr_in6 *)(&req->lifr_addr))->sin6_scope_id == 0) {
struct lifreq req2;
memcpy(req2.lifr_name, req->lifr_name, LIFNAMSIZ);
ret = ioctl(fd, SIOCGLIFINDEX, &req2);
if (ret == -1) {
reason = "SIOCGLIFINDEX";
goto finish;
}
((struct sockaddr_in6 *)(&req->lifr_addr))->sin6_scope_id = req2.lifr_index;
}
rb_ary_push(list, sockaddr_obj((struct sockaddr *)&req->lifr_addr, req->lifr_addrlen));
}
}
finish:
save_errno = errno;
xfree(lc.lifc_req);
if (fd != -1)
close(fd);
errno = save_errno;
if (reason)
rb_syserr_fail(save_errno, reason);
return list;
#elif defined(SIOCGIFCONF)
int fd = -1;
int ret;
#define EXTRA_SPACE ((int)(sizeof(struct ifconf) + sizeof(union_sockaddr)))
char initbuf[4096+EXTRA_SPACE];
char *buf = initbuf;
int bufsize;
struct ifconf conf;
struct ifreq *req;
VALUE list = Qnil;
const char *reason = NULL;
int save_errno;
fd = socket(AF_INET, SOCK_DGRAM, 0);
if (fd == -1)
rb_sys_fail("socket(2)");
bufsize = sizeof(initbuf);
buf = initbuf;
retry:
conf.ifc_len = bufsize;
conf.ifc_req = (struct ifreq *)buf;
/* fprintf(stderr, "bufsize: %d\n", bufsize); */
ret = ioctl(fd, SIOCGIFCONF, &conf);
if (ret == -1) {
reason = "SIOCGIFCONF";
goto finish;
}
/* fprintf(stderr, "conf.ifc_len: %d\n", conf.ifc_len); */
if (bufsize - EXTRA_SPACE < conf.ifc_len) {
if (bufsize < conf.ifc_len) {
/* NetBSD returns required size for all interfaces. */
bufsize = conf.ifc_len + EXTRA_SPACE;
}
else {
bufsize = bufsize << 1;
}
if (buf == initbuf)
buf = NULL;
buf = xrealloc(buf, bufsize);
goto retry;
}
close(fd);
fd = -1;
list = rb_ary_new();
req = conf.ifc_req;
while ((char*)req < (char*)conf.ifc_req + conf.ifc_len) {
struct sockaddr *addr = &req->ifr_addr;
if (IS_IP_FAMILY(addr->sa_family)) {
rb_ary_push(list, sockaddr_obj(addr, sockaddr_len(addr)));
}
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
# ifndef _SIZEOF_ADDR_IFREQ
# define _SIZEOF_ADDR_IFREQ(r) \
(sizeof(struct ifreq) + \
(sizeof(struct sockaddr) < (r).ifr_addr.sa_len ? \
(r).ifr_addr.sa_len - sizeof(struct sockaddr) : \
0))
# endif
req = (struct ifreq *)((char*)req + _SIZEOF_ADDR_IFREQ(*req));
#else
req = (struct ifreq *)((char*)req + sizeof(struct ifreq));
#endif
}
finish:
save_errno = errno;
if (buf != initbuf)
xfree(buf);
if (fd != -1)
close(fd);
errno = save_errno;
if (reason)
rb_syserr_fail(save_errno, reason);
return list;
#undef EXTRA_SPACE
#elif defined(_WIN32)
typedef struct ip_adapter_unicast_address_st {
unsigned LONG_LONG dummy0;
struct ip_adapter_unicast_address_st *Next;
struct {
struct sockaddr *lpSockaddr;
int iSockaddrLength;
} Address;
int dummy1;
int dummy2;
int dummy3;
long dummy4;
long dummy5;
long dummy6;
} ip_adapter_unicast_address_t;
typedef struct ip_adapter_anycast_address_st {
unsigned LONG_LONG dummy0;
struct ip_adapter_anycast_address_st *Next;
struct {
struct sockaddr *lpSockaddr;
int iSockaddrLength;
} Address;
} ip_adapter_anycast_address_t;
typedef struct ip_adapter_addresses_st {
unsigned LONG_LONG dummy0;
struct ip_adapter_addresses_st *Next;
void *dummy1;
ip_adapter_unicast_address_t *FirstUnicastAddress;
ip_adapter_anycast_address_t *FirstAnycastAddress;
void *dummy2;
void *dummy3;
void *dummy4;
void *dummy5;
void *dummy6;
BYTE dummy7[8];
DWORD dummy8;
DWORD dummy9;
DWORD dummy10;
DWORD IfType;
int OperStatus;
DWORD dummy12;
DWORD dummy13[16];
void *dummy14;
} ip_adapter_addresses_t;
typedef ULONG (WINAPI *GetAdaptersAddresses_t)(ULONG, ULONG, PVOID, ip_adapter_addresses_t *, PULONG);
HMODULE h;
GetAdaptersAddresses_t pGetAdaptersAddresses;
ULONG len;
DWORD ret;
ip_adapter_addresses_t *adapters;
VALUE list;
h = LoadLibrary("iphlpapi.dll");
if (!h)
rb_notimplement();
pGetAdaptersAddresses = (GetAdaptersAddresses_t)GetProcAddress(h, "GetAdaptersAddresses");
if (!pGetAdaptersAddresses) {
FreeLibrary(h);
rb_notimplement();
}
ret = pGetAdaptersAddresses(AF_UNSPEC, 0, NULL, NULL, &len);
if (ret != ERROR_SUCCESS && ret != ERROR_BUFFER_OVERFLOW) {
errno = rb_w32_map_errno(ret);
FreeLibrary(h);
rb_sys_fail("GetAdaptersAddresses");
}
adapters = (ip_adapter_addresses_t *)ALLOCA_N(BYTE, len);
ret = pGetAdaptersAddresses(AF_UNSPEC, 0, NULL, adapters, &len);
if (ret != ERROR_SUCCESS) {
errno = rb_w32_map_errno(ret);
FreeLibrary(h);
rb_sys_fail("GetAdaptersAddresses");
}
list = rb_ary_new();
for (; adapters; adapters = adapters->Next) {
ip_adapter_unicast_address_t *uni;
ip_adapter_anycast_address_t *any;
if (adapters->OperStatus != 1) /* 1 means IfOperStatusUp */
continue;
for (uni = adapters->FirstUnicastAddress; uni; uni = uni->Next) {
#ifndef INET6
if (uni->Address.lpSockaddr->sa_family == AF_INET)
#else
if (IS_IP_FAMILY(uni->Address.lpSockaddr->sa_family))
#endif
rb_ary_push(list, sockaddr_obj(uni->Address.lpSockaddr, uni->Address.iSockaddrLength));
}
for (any = adapters->FirstAnycastAddress; any; any = any->Next) {
#ifndef INET6
if (any->Address.lpSockaddr->sa_family == AF_INET)
#else
if (IS_IP_FAMILY(any->Address.lpSockaddr->sa_family))
#endif
rb_ary_push(list, sockaddr_obj(any->Address.lpSockaddr, any->Address.iSockaddrLength));
}
}
FreeLibrary(h);
return list;
#endif
}
.ip_sockets_port0(ai_list, reuseaddr)
# File 'ext/socket/lib/socket.rb', line 1110
def self.ip_sockets_port0(ai_list, reuseaddr) sockets = [] begin sockets.clear port = nil ai_list.each {|ai| begin s = Socket.new(ai.pfamily, ai.socktype, ai.protocol) rescue SystemCallError next end sockets << s s.ipv6only! if ai.ipv6? if reuseaddr s.setsockopt(:SOCKET, :REUSEADDR, 1) end unless port s.bind(ai) port = s.local_address.ip_port else s.bind(ai.family_addrinfo(ai.ip_address, port)) end } rescue Errno::EADDRINUSE sockets.each(&:close) retry rescue Exception sockets.each(&:close) raise end sockets end
.sockaddr_in(port, host) ⇒ sockaddr
.pack_sockaddr_in(port, host) ⇒ sockaddr
sockaddr
.pack_sockaddr_in(port, host) ⇒ sockaddr
Alias for .sockaddr_in.
.sockaddr_un(path) ⇒ sockaddr
.pack_sockaddr_un(path) ⇒ sockaddr
sockaddr
.pack_sockaddr_un(path) ⇒ sockaddr
Alias for .sockaddr_un.
.pair(domain, type, protocol) ⇒ Socket
.socketpair(domain, type, protocol) ⇒ Socket
Also known as: .socketpair
Socket
.socketpair(domain, type, protocol) ⇒ Socket
Creates a pair of sockets connected each other.
domain should be a communications domain such as: :INET, :INET6, :UNIX, etc.
socktype should be a socket type such as: :STREAM, :DGRAM, :RAW, etc.
protocol should be a protocol defined in the domain, defaults to 0 for the domain.
s1, s2 = Socket.pair(:UNIX, :STREAM, 0)
s1.send "a", 0
s1.send "b", 0
s1.close
p s2.recv(10) #=> "ab"
p s2.recv(10) #=> ""
p s2.recv(10) #=> ""
s1, s2 = Socket.pair(:UNIX, :DGRAM, 0)
s1.send "a", 0
s1.send "b", 0
p s2.recv(10) #=> "a"
p s2.recv(10) #=> "b"
# File 'ext/socket/socket.c', line 249
VALUE
rsock_sock_s_socketpair(int argc, VALUE *argv, VALUE klass)
{
VALUE domain, type, protocol;
int d, t, p, sp[2];
int ret;
VALUE s1, s2, r;
rb_scan_args(argc, argv, "21", &domain, &type, &protocol);
if (NIL_P(protocol))
protocol = INT2FIX(0);
setup_domain_and_type(domain, &d, type, &t);
p = NUM2INT(protocol);
ret = rsock_socketpair(d, t, p, sp);
if (ret < 0) {
rb_sys_fail("socketpair(2)");
}
s1 = rsock_init_sock(rb_obj_alloc(klass), sp[0]);
s2 = rsock_init_sock(rb_obj_alloc(klass), sp[1]);
r = rb_assoc_new(s1, s2);
if (rb_block_given_p()) {
return rb_ensure(pair_yield, r, io_close, s1);
}
return r;
}
.resolve_hostname(family, host, port, hostname_resolution_result) (private)
[ GitHub ]# File 'ext/socket/lib/socket.rb', line 975
def self.resolve_hostname(family, host, port, hostname_resolution_result) begin resolved_addrinfos = Addrinfo.getaddrinfo(host, port, ADDRESS_FAMILIES[family], :STREAM) hostname_resolution_result.add(family, resolved_addrinfos) rescue => e hostname_resolution_result.add(family, e) end end
.second_to_timeout(started_at, ends_at) (private)
[ GitHub ]# File 'ext/socket/lib/socket.rb', line 990
def self.second_to_timeout(started_at, ends_at) return nil if ends_at == Float::INFINITY || ends_at.nil? remaining = (ends_at - started_at) remaining.negative? ? 0 : remaining end
.sockaddr_in(port, host) ⇒ sockaddr
.pack_sockaddr_in(port, host) ⇒ sockaddr
Also known as: .pack_sockaddr_in
sockaddr
.pack_sockaddr_in(port, host) ⇒ sockaddr
Packs port and host as an AF_INET/AF_INET6 sockaddr string.
Socket.sockaddr_in(80, "127.0.0.1")
#=> "\x02\x00\x00P\x7F\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00"
Socket.sockaddr_in(80, "::1")
#=> "\n\x00\x00P\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00"
# File 'ext/socket/socket.c', line 1335
static VALUE
sock_s_pack_sockaddr_in(VALUE self, VALUE port, VALUE host)
{
struct rb_addrinfo *res = rsock_addrinfo(host, port, AF_UNSPEC, 0, 0, 0);
VALUE addr = rb_str_new((char*)res->ai->ai_addr, res->ai->ai_addrlen);
rb_freeaddrinfo(res);
return addr;
}
.sockaddr_un(path) ⇒ sockaddr
.pack_sockaddr_un(path) ⇒ sockaddr
Also known as: .pack_sockaddr_un
sockaddr
.pack_sockaddr_un(path) ⇒ sockaddr
Packs path as an AF_UNIX sockaddr string.
Socket.sockaddr_un("/tmp/sock") #=> "\x01\x00/tmp/sock\x00\x00..."
# File 'ext/socket/socket.c', line 1398
static VALUE
sock_s_pack_sockaddr_un(VALUE self, VALUE path)
{
struct sockaddr_un sockaddr;
VALUE addr;
StringValue(path);
INIT_SOCKADDR_UN(&sockaddr, sizeof(struct sockaddr_un));
if (sizeof(sockaddr.sun_path) < (size_t)RSTRING_LEN(path)) {
rb_raise(rb_eArgError, "too long unix socket path (%"PRIuSIZE" bytes given but %"PRIuSIZE" bytes max)",
(size_t)RSTRING_LEN(path), sizeof(sockaddr.sun_path));
}
memcpy(sockaddr.sun_path, RSTRING_PTR(path), RSTRING_LEN(path));
addr = rb_str_new((char*)&sockaddr, rsock_unix_sockaddr_len(path));
return addr;
}
.pair(domain, type, protocol) ⇒ Socket
.socketpair(domain, type, protocol) ⇒ Socket
Socket
.socketpair(domain, type, protocol) ⇒ Socket
Alias for .pair.
.tcp(host, port, local_host = nil, local_port = nil, [opts]) {|socket| ... }
.tcp(host, port, local_host = nil, local_port = nil, [opts])
creates a new socket object connected to host:port using TCP/IP.
Starting from Ruby 3.4, this method operates according to the Happy Eyeballs Version 2 (RFC 8305) algorithm by default.
For details on Happy Eyeballs Version 2, see Socket.tcp_fast_fallback=.
To make it behave the same as in Ruby 3.3 and earlier, explicitly specify the option fast_fallback:false. Or, setting Socket.tcp_fast_fallback=false will disable Happy Eyeballs Version 2 not only for this method but for all Socket globally.
If local_host:local_port is given, the socket is bound to it.
The optional last argument opts is options represented by a hash. opts may have following options:
- :resolv_timeout
-
Specifies the timeout in seconds from when the hostname resolution starts.
- :connect_timeout
-
This method sequentially attempts connecting to all candidate destination addresses.
Theconnect_timeoutspecifies the timeout in seconds from the start of the connection attempt to the last candidate.
By default, all connection attempts continue until the timeout occurs.
Whenfast_fallback:falseis explicitly specified,
a timeout is set for each connection attempt and any connection attempt that exceeds its timeout will be canceled. - :open_timeout
-
Specifies the timeout in seconds from the start of the method execution.
If this timeout is reached while there are still addresses that have not yet been attempted for connection, no further attempts will be made.
If this option is specified together with other timeout options, anArgumentErrorwill be raised. - :fast_fallback
-
Enables the Happy Eyeballs Version 2 algorithm (enabled by default).
If a block is given, the block is called with the socket. The value of the block is returned. The socket is closed when this method returns.
If no block is given, the socket is returned.
Socket.tcp("www.ruby-lang.org", 80) {|sock|
sock.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
sock.close_write
puts sock.read
}
# File 'ext/socket/lib/socket.rb', line 660
def self.tcp(host, port, local_host = nil, local_port = nil, connect_timeout: nil, resolv_timeout: nil, open_timeout: nil, fast_fallback: tcp_fast_fallback, &) # :yield: socket if open_timeout && (connect_timeout || resolv_timeout) raise ArgumentError, "Cannot specify open_timeout along with connect_timeout or resolv_timeout" end sock = if fast_fallback && !(host && ip_address?(host)) tcp_with_fast_fallback(host, port, local_host, local_port, connect_timeout:, resolv_timeout:, open_timeout:) else tcp_without_fast_fallback(host, port, local_host, local_port, connect_timeout:, resolv_timeout:, open_timeout:) end if block_given? begin yield sock ensure sock.close end else sock end end
.tcp_server_loop(host = nil, port, &b)
creates a TCP/IP server on port and calls the block for each connection accepted. The block is called with a socket and a client_address as an ::Addrinfo object.
If host is specified, it is used with port to determine the server addresses.
The socket is not closed when the block returns. So application should close it explicitly.
This method calls the block sequentially. It means that the next connection is not accepted until the block returns. So concurrent mechanism, thread for example, should be used to service multiple clients at a time.
Note that Addrinfo.getaddrinfo is used to determine the server socket addresses. When Addrinfo.getaddrinfo returns two or more addresses, IPv4 and IPv6 address for example, all of them are used. tcp_server_loop succeeds if one socket can be used at least.
# Sequential echo server.
# It services only one client at a time.
Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
begin
IO.copy_stream(sock, sock)
ensure
sock.close
end
}
# Threaded echo server
# It services multiple clients at a time.
# Note that it may accept connections too much.
Socket.tcp_server_loop(16807) {|sock, client_addrinfo|
Thread.new {
begin
IO.copy_stream(sock, sock)
ensure
sock.close
end
}
}
# File 'ext/socket/lib/socket.rb', line 1297
def self.tcp_server_loop(host=nil, port, &b) # :yield: socket, client_addrinfo tcp_server_sockets(host, port) {|sockets| accept_loop(sockets, &b) } end
.tcp_server_sockets(host = nil, port)
creates TCP/IP server sockets for host and port. host is optional.
If no block given, it returns an array of listening sockets.
If a block is given, the block is called with the sockets. The value of the block is returned. The socket is closed when this method returns.
If port is 0, actual port number is chosen dynamically. However all sockets in the result has same port number.
# tcp_server_sockets returns two sockets.
sockets = Socket.tcp_server_sockets(1296)
p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
# The sockets contains IPv6 and IPv4 sockets.
sockets.each {|s| p s.local_address }
#=> #<Addrinfo: [::]:1296 TCP>
# #<Addrinfo: 0.0.0.0:1296 TCP>
# IPv6 and IPv4 socket has same port number, 53114, even if it is chosen dynamically.
sockets = Socket.tcp_server_sockets(0)
sockets.each {|s| p s.local_address }
#=> #<Addrinfo: [::]:53114 TCP>
# #<Addrinfo: 0.0.0.0:53114 TCP>
# The block is called with the sockets.
Socket.tcp_server_sockets(0) {|sockets|
p sockets #=> [#<Socket:fd 3>, #<Socket:fd 4>]
}
# File 'ext/socket/lib/socket.rb', line 1197
def self.tcp_server_sockets(host=nil, port) if port == 0 sockets = tcp_server_sockets_port0(host) else last_error = nil sockets = [] begin Addrinfo.foreach(host, port, nil, :STREAM, nil, Socket::AI_PASSIVE) {|ai| begin s = ai.listen rescue SystemCallError last_error = $! next end sockets << s } if sockets.empty? raise last_error end rescue Exception sockets.each(&:close) raise end end if block_given? begin yield sockets ensure sockets.each(&:close) end else sockets end end
.tcp_server_sockets_port0(host)
# File 'ext/socket/lib/socket.rb', line 1146
def self.tcp_server_sockets_port0(host) ai_list = Addrinfo.getaddrinfo(host, 0, nil, :STREAM, nil, Socket::AI_PASSIVE) sockets = ip_sockets_port0(ai_list, true) begin sockets.each {|s| s.listen(Socket::SOMAXCONN) } rescue Exception sockets.each(&:close) raise end sockets end
.tcp_with_fast_fallback(host, port, local_host = nil, local_port = nil, connect_timeout: nil, resolv_timeout: nil, open_timeout: nil)
[ GitHub ]# File 'ext/socket/lib/socket.rb', line 683
def self.tcp_with_fast_fallback(host, port, local_host = nil, local_port = nil, connect_timeout: nil, resolv_timeout: nil, open_timeout: nil) if local_host || local_port local_addrinfos = Addrinfo.getaddrinfo(local_host, local_port, nil, :STREAM, timeout: resolv_timeout) resolving_family_names = local_addrinfos.map { |lai| ADDRESS_FAMILIES.key(lai.afamily) }.uniq else local_addrinfos = [] resolving_family_names = ADDRESS_FAMILIES.keys end hostname_resolution_threads = [] resolution_store = HostnameResolutionStore.new(resolving_family_names) connecting_sockets = {} is_windows_environment ||= (RUBY_PLATFORM =~ /mswin|mingw|cygwin/) now = current_clock_time resolution_delay_expires_at = nil connection_attempt_delay_expires_at = nil user_specified_connect_timeout_at = nil user_specified_open_timeout_at = open_timeout ? now + open_timeout : nil last_error = nil last_error_from_thread = false if resolving_family_names.size == 1 family_name = resolving_family_names.first addrinfos = Addrinfo.getaddrinfo(host, port, ADDRESS_FAMILIES[:family_name], :STREAM, timeout: resolv_timeout) resolution_store.add_resolved(family_name, addrinfos) hostname_resolution_result = nil hostname_resolution_notifier = nil user_specified_resolv_timeout_at = nil else hostname_resolution_result = HostnameResolutionResult.new(resolving_family_names.size) hostname_resolution_notifier = hostname_resolution_result.notifier hostname_resolution_threads.concat( resolving_family_names.map { |family| thread_args = [family, host, port, hostname_resolution_result] thread = Thread.new(*thread_args) { |*thread_args| resolve_hostname(*thread_args) } Thread.pass thread } ) user_specified_resolv_timeout_at = resolv_timeout ? now + resolv_timeout : Float::INFINITY end loop do if resolution_store.any_addrinfos? && !resolution_delay_expires_at && !connection_attempt_delay_expires_at while (addrinfo = resolution_store.get_addrinfo) if local_addrinfos.any? local_addrinfo = local_addrinfos.find { |lai| lai.afamily == addrinfo.afamily } if local_addrinfo.nil? # Connecting addrinfoと同じアドレスファミリのLocal addrinfoがない if resolution_store.any_addrinfos? # Try other Addrinfo in next "while" next elsif connecting_sockets.any? || resolution_store.any_unresolved_family? # Exit this "while" and wait for connections to be established or hostname resolution in next loop # Or exit this "while" and wait for hostname resolution in next loop break else raise SocketError.new 'no appropriate local address' end end end begin if resolution_store.any_addrinfos? || connecting_sockets.any? || resolution_store.any_unresolved_family? socket = Socket.new(addrinfo.pfamily, addrinfo.socktype, addrinfo.protocol) socket.bind(local_addrinfo) if local_addrinfo result = socket.connect_nonblock(addrinfo, exception: false) else result = socket = local_addrinfo ? addrinfo.connect_from(local_addrinfo, timeout: connect_timeout) : addrinfo.connect(timeout: connect_timeout) end if result == :wait_writable connection_attempt_delay_expires_at = now + CONNECTION_ATTEMPT_DELAY if resolution_store.empty_addrinfos? user_specified_connect_timeout_at = connect_timeout ? now + connect_timeout : Float::INFINITY end connecting_sockets[socket] = addrinfo break else return socket # connection established end rescue SystemCallError => e socket&.close last_error = e if resolution_store.any_addrinfos? # Try other Addrinfo in next "while" next elsif connecting_sockets.any? || resolution_store.any_unresolved_family? # Exit this "while" and wait for connections to be established or hostname resolution in next loop # Or exit this "while" and wait for hostname resolution in next loop break else raise last_error end end end end ends_at = if resolution_store.any_addrinfos? [(resolution_delay_expires_at || connection_attempt_delay_expires_at), user_specified_open_timeout_at].compact.min elsif user_specified_open_timeout_at user_specified_open_timeout_at else [user_specified_resolv_timeout_at, user_specified_connect_timeout_at].compact.max end hostname_resolved, writable_sockets, except_sockets = IO.select( hostname_resolution_notifier, connecting_sockets.keys, # Use errorfds to wait for non-blocking connect failures on Windows is_windows_environment ? connecting_sockets.keys : nil, second_to_timeout(current_clock_time, ends_at), ) now = current_clock_time resolution_delay_expires_at = nil if expired?(now, resolution_delay_expires_at) connection_attempt_delay_expires_at = nil if expired?(now, connection_attempt_delay_expires_at) if writable_sockets&.any? while (writable_socket = writable_sockets.pop) is_connected = is_windows_environment || ( sockopt = writable_socket.getsockopt(Socket::SOL_SOCKET, Socket::SO_ERROR) sockopt.int.zero? ) if is_connected connecting_sockets.delete writable_socket return writable_socket else failed_ai = connecting_sockets.delete writable_socket writable_socket.close ip_address = failed_ai.ipv6? ? "[#{failed_ai.ip_address}]" : failed_ai.ip_address last_error = SystemCallError.new("connect(2) for #{ip_address}:#{failed_ai.ip_port}", sockopt.int) if writable_sockets.any? || connecting_sockets.any? # Try other writable socket in next "while" # Or exit this "while" and wait for connections to be established or hostname resolution in next loop elsif resolution_store.any_addrinfos? || resolution_store.any_unresolved_family? # Exit this "while" and try other connection attempt # Or exit this "while" and wait for hostname resolution in next loop connection_attempt_delay_expires_at = nil user_specified_connect_timeout_at = nil else raise last_error end end end end if except_sockets&.any? except_sockets.each do |except_socket| failed_ai = connecting_sockets.delete except_socket sockopt = except_socket.getsockopt(Socket::SOL_SOCKET, Socket::SO_ERROR) except_socket.close ip_address = failed_ai.ipv6? ? "[#{failed_ai.ip_address}]" : failed_ai.ip_address last_error = SystemCallError.new("connect(2) for #{ip_address}:#{failed_ai.ip_port}", sockopt.int) if except_sockets.any? || connecting_sockets.any? # Cleanup other except socket in next "each" # Or exit this "while" and wait for connections to be established or hostname resolution in next loop elsif resolution_store.any_addrinfos? || resolution_store.any_unresolved_family? # Exit this "while" and try other connection attempt # Or exit this "while" and wait for hostname resolution in next loop connection_attempt_delay_expires_at = nil user_specified_connect_timeout_at = nil else raise last_error end end end if hostname_resolved&.any? while (family_and_result = hostname_resolution_result.get) family_name, result = family_and_result if result.is_a? Exception resolution_store.add_error(family_name, result) unless (Socket.const_defined?(:EAI_ADDRFAMILY)) && (result.is_a?(Socket::ResolutionError)) && (result.error_code == Socket::EAI_ADDRFAMILY) other = family_name == :ipv6 ? :ipv4 : :ipv6 if !resolution_store.resolved?(other) || !resolution_store.resolved_successfully?(other) last_error = result last_error_from_thread = true end end else resolution_store.add_resolved(family_name, result) end end if resolution_store.resolved?(:ipv4) if resolution_store.resolved?(:ipv6) hostname_resolution_notifier = nil resolution_delay_expires_at = nil user_specified_resolv_timeout_at = nil elsif resolution_store.resolved_successfully?(:ipv4) resolution_delay_expires_at = now + RESOLUTION_DELAY end end end raise(Errno::ETIMEDOUT, 'user specified timeout') if expired?(now, user_specified_open_timeout_at) if resolution_store.empty_addrinfos? if connecting_sockets.empty? && resolution_store.resolved_all_families? if last_error_from_thread raise last_error.class, last_error., cause: last_error else raise last_error end end if (expired?(now, user_specified_resolv_timeout_at) || resolution_store.resolved_all_families?) && (expired?(now, user_specified_connect_timeout_at) || connecting_sockets.empty?) raise Errno::ETIMEDOUT, 'user specified timeout' end end end ensure hostname_resolution_threads.each do |thread| thread.exit end hostname_resolution_result&.close connecting_sockets.each_key do |connecting_socket| connecting_socket.close end end
.tcp_without_fast_fallback(host, port, local_host, local_port, connect_timeout:, resolv_timeout:, open_timeout:) (private)
[ GitHub ]# File 'ext/socket/lib/socket.rb', line 927
def self.tcp_without_fast_fallback(host, port, local_host, local_port, connect_timeout:, resolv_timeout:, open_timeout:) last_error = nil ret = nil local_addr_list = nil if local_host != nil || local_port != nil local_addr_list = Addrinfo.getaddrinfo(local_host, local_port, nil, :STREAM, nil) end timeout = open_timeout ? open_timeout : resolv_timeout starts_at = current_clock_time Addrinfo.foreach(host, port, nil, :STREAM, timeout:) {|ai| if local_addr_list local_addr = local_addr_list.find {|local_ai| local_ai.afamily == ai.afamily } next unless local_addr else local_addr = nil end begin timeout = open_timeout ? open_timeout - (current_clock_time - starts_at) : connect_timeout sock = local_addr ? ai.connect_from(local_addr, timeout:) : ai.connect(timeout:) rescue SystemCallError last_error = $! next end ret = sock break } unless ret if last_error raise last_error else raise SocketError, "no appropriate local address" end end ret end
.udp_server_loop(port) {|msg, msg_src| ... }
.udp_server_loop(host, port) {|msg, msg_src| ... }
creates a UDP/IP server on port and calls the block for each message arrived. The block is called with the message and its source information.
This method allocates sockets internally using port. If host is specified, it is used conjunction with port to determine the server addresses.
The msg is a string.
The msg_src is a ::Socket::UDPSource object. It is used for reply.
# UDP/IP echo server.
Socket.udp_server_loop(9261) {|msg, msg_src|
msg_src.reply msg
}
# File 'ext/socket/lib/socket.rb', line 1467
def self.udp_server_loop(host=nil, port, &b) # :yield: message, message_source udp_server_sockets(host, port) {|sockets| udp_server_loop_on(sockets, &b) } end
.udp_server_loop_on(sockets) {|msg, msg_src| ... }
Run UDP/IP server loop on the given sockets.
The return value of .udp_server_sockets is appropriate for the argument.
It calls the block for each message received.
# File 'ext/socket/lib/socket.rb', line 1440
def self.udp_server_loop_on(sockets, &b) # :yield: msg, msg_src loop { readable, _, _ = IO.select(sockets) udp_server_recv(readable, &b) } end
.udp_server_recv(sockets) {|msg, msg_src| ... }
Receive UDP/IP packets from the given sockets. For each packet received, the block is called.
The block receives msg and msg_src. msg is a string which is the payload of the received packet. msg_src is a ::Socket::UDPSource object which is used for reply.
.udp_server_loop can be implemented using this method as follows.
udp_server_sockets(host, port) {|sockets|
loop {
readable, _, _ = IO.select(sockets)
udp_server_recv(readable) {|msg, msg_src| ... }
}
}
# File 'ext/socket/lib/socket.rb', line 1413
def self.udp_server_recv(sockets) sockets.each {|r| msg, sender_addrinfo, _, *controls = r.recvmsg_nonblock(exception: false) next if msg == :wait_readable ai = r.local_address if ai.ipv6? and pktinfo = controls.find {|c| c.cmsg_is?(:IPV6, :PKTINFO) } ai = Addrinfo.udp(pktinfo.ipv6_pktinfo_addr.ip_address, ai.ip_port) yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg| r.sendmsg reply_msg, 0, sender_addrinfo, pktinfo } else yield msg, UDPSource.new(sender_addrinfo, ai) {|reply_msg| r.send reply_msg, 0, sender_addrinfo } end } end
.udp_server_sockets([host, ] port)
Creates UDP/IP sockets for a UDP server.
If no block given, it returns an array of sockets.
If a block is given, the block is called with the sockets. The value of the block is returned. The sockets are closed when this method returns.
If port is zero, some port is chosen. But the chosen port is used for the all sockets.
# UDP/IP echo server
Socket.udp_server_sockets(0) {|sockets|
p sockets.first.local_address.ip_port #=> 32963
Socket.udp_server_loop_on(sockets) {|msg, msg_src|
msg_src.reply msg
}
}
# File 'ext/socket/lib/socket.rb', line 1325
def self.udp_server_sockets(host=nil, port) last_error = nil sockets = [] ipv6_recvpktinfo = nil if defined? Socket::AncillaryData if defined? Socket::IPV6_RECVPKTINFO # RFC 3542 ipv6_recvpktinfo = Socket::IPV6_RECVPKTINFO elsif defined? Socket::IPV6_PKTINFO # RFC 2292 ipv6_recvpktinfo = Socket::IPV6_PKTINFO end end local_addrs = Socket.ip_address_list ip_list = [] Addrinfo.foreach(host, port, nil, :DGRAM, nil, Socket::AI_PASSIVE) {|ai| if ai.ipv4? && ai.ip_address == "0.0.0.0" local_addrs.each {|a| next unless a.ipv4? ip_list << Addrinfo.new(a.to_sockaddr, :INET, :DGRAM, 0); } elsif ai.ipv6? && ai.ip_address == "::" && !ipv6_recvpktinfo local_addrs.each {|a| next unless a.ipv6? ip_list << Addrinfo.new(a.to_sockaddr, :INET6, :DGRAM, 0); } else ip_list << ai end } ip_list.uniq!(&:to_sockaddr) if port == 0 sockets = ip_sockets_port0(ip_list, false) else ip_list.each {|ip| ai = Addrinfo.udp(ip.ip_address, port) begin s = ai.bind rescue SystemCallError last_error = $! next end sockets << s } if sockets.empty? raise last_error end end sockets.each {|s| ai = s.local_address if ipv6_recvpktinfo && ai.ipv6? && ai.ip_address == "::" s.setsockopt(:IPV6, ipv6_recvpktinfo, 1) end } if block_given? begin yield sockets ensure sockets.each(&:close) if sockets end else sockets end end
.unix(path)
creates a new socket connected to path using UNIX socket socket.
If a block is given, the block is called with the socket. The value of the block is returned. The socket is closed when this method returns.
If no block is given, the socket is returned.
# talk to /tmp/sock socket.
Socket.unix("/tmp/sock") {|sock|
t = Thread.new { IO.copy_stream(sock, STDOUT) }
IO.copy_stream(STDIN, sock)
t.join
}
.unix_server_loop(path, &b)
creates a UNIX socket server on path. It calls the block for each socket accepted.
If host is specified, it is used with port to determine the server ports.
The socket is not closed when the block returns. So application should close it.
This method deletes the socket file pointed by path at first if the file is a socket file and it is owned by the user of the application. This is safe only if the directory of path is not changed by a malicious user. So don’t use /tmp/malicious-users-directory/socket. Note that /tmp/socket and /tmp/your-private-directory/socket is safe assuming that /tmp has sticky bit.
# Sequential echo server.
# It services only one client at a time.
Socket.unix_server_loop("/tmp/sock") {|sock, client_addrinfo|
begin
IO.copy_stream(sock, sock)
ensure
sock.close
end
}
# File 'ext/socket/lib/socket.rb', line 1604
def self.unix_server_loop(path, &b) # :yield: socket, client_addrinfo unix_server_socket(path) {|serv| accept_loop(serv, &b) } end
.unix_server_socket(path)
creates a UNIX server socket on path
If no block given, it returns a listening socket.
If a block is given, it is called with the socket and the block value is returned. When the block exits, the socket is closed and the socket file is removed.
socket = Socket.unix_server_socket("/tmp/s")
p socket #=> #<Socket:fd 3>
p socket.local_address #=> #<Addrinfo: /tmp/s SOCK_STREAM>
Socket.unix_server_socket("/tmp/sock") {|s|
p s #=> #<Socket:fd 3>
p s.local_address #=> # #<Addrinfo: /tmp/sock SOCK_STREAM>
}
# File 'ext/socket/lib/socket.rb', line 1547
def self.unix_server_socket(path) unless unix_socket_abstract_name?(path) begin st = File.lstat(path) rescue Errno::ENOENT end if st&.socket? && st.owned? File.unlink path end end s = Addrinfo.unix(path).listen if block_given? begin yield s ensure s.close unless unix_socket_abstract_name?(path) File.unlink path end end else s end end
.unix_socket_abstract_name?(path) ⇒ Boolean (private)
# File 'ext/socket/lib/socket.rb', line 1575
def unix_socket_abstract_name?(path) /linux/ =~ RUBY_PLATFORM && /\A(\0|\z)/ =~ path end
.unpack_sockaddr_in(sockaddr) ⇒ Array, ip_address
Unpacks sockaddr into port and ip_address.
sockaddr should be a string or an addrinfo for AF_INET/AF_INET6.
sockaddr = Socket.sockaddr_in(80, "127.0.0.1")
p sockaddr #=> "\x02\x00\x00P\x7F\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00"
p Socket.unpack_sockaddr_in(sockaddr) #=> [80, "127.0.0.1"]
# File 'ext/socket/socket.c', line 1359
static VALUE
sock_s_unpack_sockaddr_in(VALUE self, VALUE addr)
{
struct sockaddr_in * sockaddr;
VALUE host;
sockaddr = (struct sockaddr_in*)SockAddrStringValuePtr(addr);
if (RSTRING_LEN(addr) <
(char*)&((struct sockaddr *)sockaddr)->sa_family +
sizeof(((struct sockaddr *)sockaddr)->sa_family) -
(char*)sockaddr)
rb_raise(rb_eArgError, "too short sockaddr");
if (((struct sockaddr *)sockaddr)->sa_family != AF_INET
#ifdef INET6
&& ((struct sockaddr *)sockaddr)->sa_family != AF_INET6
#endif
) {
#ifdef INET6
rb_raise(rb_eArgError, "not an AF_INET/AF_INET6 sockaddr");
#else
rb_raise(rb_eArgError, "not an AF_INET sockaddr");
#endif
}
host = rsock_make_ipaddr((struct sockaddr*)sockaddr, RSTRING_SOCKLEN(addr));
return rb_assoc_new(INT2NUM(ntohs(sockaddr->sin_port)), host);
}
.unpack_sockaddr_un(sockaddr) ⇒ path
Unpacks sockaddr into path.
sockaddr should be a string or an addrinfo for AF_UNIX.
sockaddr = Socket.sockaddr_un("/tmp/sock")
p Socket.unpack_sockaddr_un(sockaddr) #=> "/tmp/sock"
# File 'ext/socket/socket.c', line 1428
static VALUE
sock_s_unpack_sockaddr_un(VALUE self, VALUE addr)
{
struct sockaddr_un * sockaddr;
VALUE path;
sockaddr = (struct sockaddr_un*)SockAddrStringValuePtr(addr);
if (RSTRING_LEN(addr) <
(char*)&((struct sockaddr *)sockaddr)->sa_family +
sizeof(((struct sockaddr *)sockaddr)->sa_family) -
(char*)sockaddr)
rb_raise(rb_eArgError, "too short sockaddr");
if (((struct sockaddr *)sockaddr)->sa_family != AF_UNIX) {
rb_raise(rb_eArgError, "not an AF_UNIX sockaddr");
}
if (sizeof(struct sockaddr_un) < (size_t)RSTRING_LEN(addr)) {
rb_raise(rb_eTypeError, "too long sockaddr_un - %ld longer than %d",
RSTRING_LEN(addr), (int)sizeof(struct sockaddr_un));
}
path = rsock_unixpath_str(sockaddr, RSTRING_SOCKLEN(addr));
return path;
}
Instance Method Details
#__accept_nonblock(ex) (private)
# File 'ext/socket/socket.c', line 768
static VALUE
sock_accept_nonblock(VALUE sock, VALUE ex)
{
rb_io_t *fptr;
VALUE sock2;
union_sockaddr buf;
struct sockaddr *addr = &buf.addr;
socklen_t len = (socklen_t)sizeof buf;
GetOpenFile(sock, fptr);
sock2 = rsock_s_accept_nonblock(rb_cSocket, ex, fptr, addr, &len);
if (SYMBOL_P(sock2)) /* :wait_readable */
return sock2;
return rb_assoc_new(sock2, rsock_io_socket_addrinfo(sock2, &buf.addr, len));
}
#__connect_nonblock(addr, ex) (private)
# File 'ext/socket/socket.c', line 409
static VALUE
sock_connect_nonblock(VALUE sock, VALUE addr, VALUE ex)
{
VALUE rai;
rb_io_t *fptr;
int n;
SockAddrStringValueWithAddrinfo(addr, rai);
addr = rb_str_new4(addr);
GetOpenFile(sock, fptr);
rb_io_set_nonblock(fptr);
n = connect(fptr->fd, (struct sockaddr*)RSTRING_PTR(addr), RSTRING_SOCKLEN(addr));
if (n < 0) {
int e = errno;
if (e == EINPROGRESS) {
if (ex == Qfalse) {
return sym_wait_writable;
}
rb_readwrite_syserr_fail(RB_IO_WAIT_WRITABLE, e, "connect(2) would block");
}
if (e == EISCONN) {
if (ex == Qfalse) {
return INT2FIX(0);
}
}
rsock_syserr_fail_raddrinfo_or_sockaddr(e, "connect(2)", addr, rai);
}
return INT2FIX(n);
}
#__recvfrom_nonblock(len, flg, str, ex) (private)
# File 'ext/socket/socket.c', line 736
static VALUE
sock_recvfrom_nonblock(VALUE sock, VALUE len, VALUE flg, VALUE str, VALUE ex)
{
return rsock_s_recvfrom_nonblock(sock, len, flg, str, ex, RECV_SOCKET);
}
#accept ⇒ Socket, client_addrinfo
Accepts a next connection. Returns a new Socket object and ::Addrinfo object.
serv = Socket.new(:INET, :STREAM, 0)
serv.listen(5)
c = Socket.new(:INET, :STREAM, 0)
c.connect(serv.connect_address)
p serv.accept #=> [#<Socket:fd 6>, #<Addrinfo: 127.0.0.1:48555 TCP>]
# File 'ext/socket/socket.c', line 756
static VALUE
sock_accept(VALUE server)
{
union_sockaddr buffer;
socklen_t length = (socklen_t)sizeof(buffer);
VALUE peer = rsock_s_accept(rb_cSocket, server, &buffer.addr, &length);
return rb_assoc_new(peer, rsock_io_socket_addrinfo(peer, &buffer.addr, length));
}
#accept_nonblock([options]) ⇒ Socket, client_addrinfo
Accepts an incoming connection using accept(2) after O_NONBLOCK is set for the underlying file descriptor. It returns an array containing the accepted socket for the incoming connection, client_socket, and an ::Addrinfo, client_addrinfo.
Example
# In one script, start this first
require 'socket'
include Socket::Constants
socket = Socket.new(AF_INET, SOCK_STREAM, 0)
sockaddr = Socket.sockaddr_in(2200, 'localhost')
socket.bind(sockaddr)
socket.listen(5)
begin # emulate blocking accept
client_socket, client_addrinfo = socket.accept_nonblock
rescue IO::WaitReadable, Errno::EINTR
IO.select([socket])
retry
end
puts "The client said, '#{client_socket.readline.chomp}'"
client_socket.puts "Hello from script one!"
socket.close
# In another script, start this second
require 'socket'
include Socket::Constants
socket = Socket.new(AF_INET, SOCK_STREAM, 0)
sockaddr = Socket.sockaddr_in(2200, 'localhost')
socket.connect(sockaddr)
socket.puts "Hello from script 2."
puts "The server said, '#{socket.readline.chomp}'"
socket.close
Refer to #accept for the exceptions that may be thrown if the call to accept_nonblock fails.
accept_nonblock may raise any error corresponding to accept(2) failure, including Errno::EWOULDBLOCK.
If the exception is Errno::EWOULDBLOCK, Errno::EAGAIN, Errno::ECONNABORTED or Errno::EPROTO, it is extended by IO::WaitReadable. So IO::WaitReadable can be used to rescue the exceptions for retrying accept_nonblock.
By specifying a keyword argument exception to false, you can indicate that accept_nonblock should not raise an IO::WaitReadable exception, but return the symbol :wait_readable instead.
See
# File 'ext/socket/lib/socket.rb', line 598
def accept_nonblock(exception: true) __accept_nonblock(exception) end
#bind(local_sockaddr) ⇒ 0
Binds to the given local address.
Parameter
-
local_sockaddr- thestructsockaddr contained in a string or an::Addrinfoobject
Example
require 'socket'
# use Addrinfo
socket = Socket.new(:INET, :STREAM, 0)
socket.bind(Addrinfo.tcp("127.0.0.1", 2222))
p socket.local_address #=> #<Addrinfo: 127.0.0.1:2222 TCP>
# use struct sockaddr
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.bind( sockaddr )
Unix-based Exceptions
On unix-based based systems the following system exceptions may be raised if the call to bind fails:
-
Errno::EACCES- the specified sockaddr is protected and the current user does not have permission to bind to it -
Errno::EADDRINUSE- the specified sockaddr is already in use -
Errno::EADDRNOTAVAIL- the specified sockaddr is not available from the local machine -
Errno::EAFNOSUPPORT- the specified sockaddr is not a valid address for the family of the callingsocket -
Errno::EBADF- the sockaddr specified is not a valid file descriptor -
Errno::EFAULT- the sockaddr argument cannot be accessed -
Errno::EINVAL- thesocketis already bound to an address, and the protocol does not support binding to the new sockaddr or thesockethas been shut down. -
Errno::EINVAL- the address length is not a valid length for the address family -
Errno::ENAMETOOLONG- the pathname resolved had a length which exceeded PATH_MAX -
Errno::ENOBUFS- no buffer space is available -
Errno::ENOSR- there were insufficient STREAMS resources available to complete the operation -
Errno::ENOTSOCK- thesocketdoes not refer to a socket -
Errno::EOPNOTSUPP- the socket type of thesocketdoes not support binding to an address
On unix-based based systems if the address family of the calling socket is AF_UNIX the follow exceptions may be raised if the call to bind fails:
-
Errno::EACCES- search permission is denied for a component of the prefix path or write access to thesocketis denied -
Errno::EDESTADDRREQ- the sockaddr argument is a null pointer -
Errno::EISDIR- same asErrno::EDESTADDRREQ -
Errno::EIO- an i/o error occurred -
Errno::ELOOP- too many symbolic links were encountered in translating the pathname in sockaddr -
Errno::ENAMETOOLLONG- a component of a pathname exceeded NAME_MAX characters, or an entire pathname exceeded PATH_MAX characters -
Errno::ENOENT- a component of the pathname does not name an existing file or the pathname is an empty string -
Errno::ENOTDIR- a component of the path prefix of the pathname in sockaddr is not a directory -
Errno::EROFS- the name would reside on a read only filesystem
Windows Exceptions
On Windows systems the following system exceptions may be raised if the call to bind fails:
-
Errno::ENETDOWN– the network is down
-
Errno::EACCES- the attempt to connect the datagram socket to the broadcast address failed -
Errno::EADDRINUSE- the socket’s local address is already in use -
Errno::EADDRNOTAVAIL- the specified address is not a valid address for this computer -
Errno::EFAULT- the socket’s internal address or address length parameter is too small or is not a valid part of the user space addressed -
Errno::EINVAL- thesocketis already bound to an address -
Errno::ENOBUFS- no buffer space is available -
Errno::ENOTSOCK- thesocketargument does not refer to a socket
See
-
bind manual pages on unix-based systems
-
bind function in Microsoft’s Winsock functions reference
# File 'ext/socket/socket.c', line 526
static VALUE
sock_bind(VALUE sock, VALUE addr)
{
VALUE rai;
rb_io_t *fptr;
SockAddrStringValueWithAddrinfo(addr, rai);
GetOpenFile(sock, fptr);
if (bind(fptr->fd, (struct sockaddr*)RSTRING_PTR(addr), RSTRING_SOCKLEN(addr)) < 0)
rsock_sys_fail_raddrinfo_or_sockaddr("bind(2)", addr, rai);
return INT2FIX(0);
}
#connect(remote_sockaddr) ⇒ 0
Requests a connection to be made on the given remote_sockaddr. Returns 0 if successful, otherwise an exception is raised.
Parameter
-
remote_sockaddr- thestructsockaddr contained in a string or::Addrinfoobject
Example:
# Pull down Google's web page
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 80, 'www.google.com' )
socket.connect( sockaddr )
socket.write( "GET / HTTP/1.0\r\n\r\n" )
results = socket.read
Unix-based Exceptions
On unix-based systems the following system exceptions may be raised if the call to connect fails:
-
Errno::EACCES- search permission is denied for a component of the prefix path or write access to thesocketis denied -
Errno::EADDRINUSE- the sockaddr is already in use -
Errno::EADDRNOTAVAIL- the specified sockaddr is not available from the local machine -
Errno::EAFNOSUPPORT- the specified sockaddr is not a valid address for the address family of the specifiedsocket -
Errno::EALREADY- a connection is already in progress for the specified socket -
Errno::EBADF- thesocketis not a valid file descriptor -
Errno::ECONNREFUSED- the target sockaddr was not listening for connections refused the connection request -
Errno::ECONNRESET- the remote host reset the connection request -
Errno::EFAULT- the sockaddr cannot be accessed -
Errno::EHOSTUNREACH- the destination host cannot be reached (probably because the host is down or a remote router cannot reach it) -
Errno::EINPROGRESS- the O_NONBLOCK is set for thesocketand the connection cannot be immediately established; the connection will be established asynchronously -
Errno::EINTR- the attempt to establish the connection was interrupted by delivery of a signal that was caught; the connection will be established asynchronously -
Errno::EISCONN- the specifiedsocketis already connected -
Errno::EINVAL- the address length used for the sockaddr is not a valid length for the address family or there is an invalid family in sockaddr -
Errno::ENAMETOOLONG- the pathname resolved had a length which exceeded PATH_MAX -
Errno::ENETDOWN- the local interface used to reach the destination is down -
Errno::ENETUNREACH- no route to the network is present -
Errno::ENOBUFS- no buffer space is available -
Errno::ENOSR- there were insufficient STREAMS resources available to complete the operation -
Errno::ENOTSOCK- thesocketargument does not refer to a socket -
Errno::EOPNOTSUPP- the callingsocketis listening and cannot be connected -
Errno::EPROTOTYPE- the sockaddr has a different type than the socket bound to the specified peer address -
Errno::ETIMEDOUT- the attempt to connect timed out before a connection was made.
On unix-based systems if the address family of the calling socket is AF_UNIX the follow exceptions may be raised if the call to connect fails:
-
Errno::EIO- an i/o error occurred while reading from or writing to the file system -
Errno::ELOOP- too many symbolic links were encountered in translating the pathname in sockaddr -
Errno::ENAMETOOLLONG- a component of a pathname exceeded NAME_MAX characters, or an entire pathname exceeded PATH_MAX characters -
Errno::ENOENT- a component of the pathname does not name an existing file or the pathname is an empty string -
Errno::ENOTDIR- a component of the path prefix of the pathname in sockaddr is not a directory
Windows Exceptions
On Windows systems the following system exceptions may be raised if the call to connect fails:
-
Errno::ENETDOWN- the network is down -
Errno::EADDRINUSE- the socket’s local address is already in use -
Errno::EINTR- the socket was cancelled -
Errno::EINPROGRESS- a blocking socket is in progress or the service provider is still processing a callback function. Or a nonblocking connect call is in progress on thesocket. -
Errno::EALREADY- seeErrno::EINVAL -
Errno::EADDRNOTAVAIL- the remote address is not a valid address, such as ADDR_ANY TODO check ADDRANY TO INADDR_ANY -
Errno::EAFNOSUPPORT- addresses in the specified family cannot be used with with thissocket -
Errno::ECONNREFUSED- the target sockaddr was not listening for connections refused the connection request -
Errno::EFAULT- the socket’s internal address or address length parameter is too small or is not a valid part of the user space address -
Errno::EINVAL- thesocketis a listening socket -
Errno::EISCONN- thesocketis already connected -
Errno::ENETUNREACH- the network cannot be reached from this host at this time -
Errno::EHOSTUNREACH- no route to the network is present -
Errno::ENOBUFS- no buffer space is available -
Errno::ENOTSOCK- thesocketargument does not refer to a socket -
Errno::ETIMEDOUT- the attempt to connect timed out before a connection was made. -
Errno::EWOULDBLOCK- the socket is marked as nonblocking and the connection cannot be completed immediately -
Errno::EACCES- the attempt to connect the datagram socket to the broadcast address failed
See
-
connect manual pages on unix-based systems
-
connect function in Microsoft’s Winsock functions reference
# File 'ext/socket/socket.c', line 391
static VALUE
sock_connect(VALUE self, VALUE addr)
{
VALUE rai;
SockAddrStringValueWithAddrinfo(addr, rai);
addr = rb_str_new4(addr);
int result = rsock_connect(self, (struct sockaddr*)RSTRING_PTR(addr), RSTRING_SOCKLEN(addr), 0, RUBY_IO_TIMEOUT_DEFAULT);
if (result < 0) {
rsock_sys_fail_raddrinfo_or_sockaddr("connect(2)", addr, rai);
}
return INT2FIX(result);
}
#connect_nonblock(remote_sockaddr, [options]) ⇒ 0
Requests a connection to be made on the given remote_sockaddr after O_NONBLOCK is set for the underlying file descriptor. Returns 0 if successful, otherwise an exception is raised.
Parameter
-
remote_sockaddr- thestructsockaddr contained in a string or::Addrinfoobject
Example:
# Pull down Google's web page
require 'socket'
include Socket::Constants
socket = Socket.new(AF_INET, SOCK_STREAM, 0)
sockaddr = Socket.sockaddr_in(80, 'www.google.com')
begin # emulate blocking connect
socket.connect_nonblock(sockaddr)
rescue IO::WaitWritable
IO.select(nil, [socket]) # wait 3-way handshake completion
begin
socket.connect_nonblock(sockaddr) # check connection failure
rescue Errno::EISCONN
end
end
socket.write("GET / HTTP/1.0\r\n\r\n")
results = socket.read
Refer to #connect for the exceptions that may be thrown if the call to connect_nonblock fails.
connect_nonblock may raise any error corresponding to connect(2) failure, including Errno::EINPROGRESS.
If the exception is Errno::EINPROGRESS, it is extended by IO::WaitWritable. So IO::WaitWritable can be used to rescue the exceptions for retrying connect_nonblock.
By specifying a keyword argument exception to false, you can indicate that connect_nonblock should not raise an IO::WaitWritable exception, but return the symbol :wait_writable instead.
See
# File 'ext/socket/lib/socket.rb', line 1654
def connect_nonblock(addr, exception: true) __connect_nonblock(addr, exception) end
#ipv6only!
enable the socket option IPV6_V6ONLY if IPV6_V6ONLY is available.
# File 'ext/socket/lib/socket.rb', line 468
def ipv6only! if defined? Socket::IPV6_V6ONLY self.setsockopt(:IPV6, :V6ONLY, 1) end end
#listen(int) ⇒ 0
Listens for connections, using the specified int as the backlog. A call to listen only applies if the socket is of type SOCK_STREAM or SOCK_SEQPACKET.
Parameter
-
backlog- the maximum length of the queue for pending connections.
Example 1
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.bind( sockaddr )
socket.listen( 5 )
Example 2 (listening on an arbitrary port, unix-based systems only):
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
socket.listen( 1 )
Unix-based Exceptions
On unix based systems the above will work because a new sockaddr struct is created on the address ADDR_ANY, for an arbitrary port number as handed off by the kernel. It will not work on Windows, because Windows requires that the socket is bound by calling bind before it can listen.
If the backlog amount exceeds the implementation-dependent maximum queue length, the implementation’s maximum queue length will be used.
On unix-based based systems the following system exceptions may be raised if the call to listen fails:
-
Errno::EBADF- the socket argument is not a valid file descriptor -
Errno::EDESTADDRREQ- the socket is not bound to a local address, and the protocol does not support listening on an unbound socket -
Errno::EINVAL- the socket is already connected -
Errno::ENOTSOCK- the socket argument does not refer to a socket -
Errno::EOPNOTSUPP- the socket protocol does not support listen -
Errno::EACCES- the calling process does not have appropriate privileges -
Errno::EINVAL- the socket has been shut down -
Errno::ENOBUFS- insufficient resources are available in the system to complete the call
Windows Exceptions
On Windows systems the following system exceptions may be raised if the call to listen fails:
-
Errno::ENETDOWN- the network is down -
Errno::EADDRINUSE- the socket’s local address is already in use. This usually occurs during the execution of bind but could be delayed if the call to bind was to a partially wildcard address (involving ADDR_ANY) and if a specific address needs to be committed at the time of the call to listen -
Errno::EINPROGRESS- a Windows Sockets 1.1 call is in progress or the service provider is still processing a callback function -
Errno::EINVAL- thesockethas not been bound with a call to bind. -
Errno::EISCONN- thesocketis already connected -
Errno::EMFILE- no more socket descriptors are available -
Errno::ENOBUFS- no buffer space is available -
Errno::ENOTSOC-socketis not a socket -
Errno::EOPNOTSUPP- the referencedsocketis not a type that supports the listen method
See
-
listen manual pages on unix-based systems
-
listen function in Microsoft’s Winsock functions reference
# File 'ext/socket/socket.c', line 610
VALUE
rsock_sock_listen(VALUE sock, VALUE log)
{
rb_io_t *fptr;
int backlog;
backlog = NUM2INT(log);
GetOpenFile(sock, fptr);
if (listen(fptr->fd, backlog) < 0)
rb_sys_fail("listen(2)");
return INT2FIX(0);
}
#recvfrom(maxlen) ⇒ Array, sender_addrinfo
#recvfrom(maxlen, flags) ⇒ Array, sender_addrinfo
Array, sender_addrinfo
#recvfrom(maxlen, flags) ⇒ Array, sender_addrinfo
Receives up to maxlen bytes from socket. flags is zero or more of the MSG_ options. The first element of the results, mesg, is the data received. The second element, sender_addrinfo, contains protocol-specific address information of the sender.
Parameters
-
maxlen- the maximum number of bytes to receive from the socket -
flags- zero or more of theMSG_options
Example
# In one file, start this first
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.bind( sockaddr )
socket.listen( 5 )
client, client_addrinfo = socket.accept
data = client.recvfrom( 20 )[0].chomp
puts "I only received 20 bytes '#{data}'"
sleep 1
socket.close
# In another file, start this second
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.connect( sockaddr )
socket.puts "Watch this get cut short!"
socket.close
Unix-based Exceptions
On unix-based based systems the following system exceptions may be raised if the call to recvfrom fails:
-
Errno::EAGAIN- thesocketfile descriptor is marked as O_NONBLOCK and no data is waiting to be received; or MSG_OOB is set and no out-of-band data is available and either thesocketfile descriptor is marked as O_NONBLOCK or thesocketdoes not support blocking to wait for out-of-band-data -
Errno::EWOULDBLOCK- seeErrno::EAGAIN -
Errno::EBADF- thesocketis not a valid file descriptor -
Errno::ECONNRESET- a connection was forcibly closed by a peer -
Errno::EFAULT- the socket’s internal buffer, address or address length cannot be accessed or written -
Errno::EINTR- a signal interrupted recvfrom before any data was available -
Errno::EINVAL- the MSG_OOB flag is set and no out-of-band data is available -
Errno::EIO- an i/o error occurred while reading from or writing to the filesystem -
Errno::ENOBUFS- insufficient resources were available in the system to perform the operation -
Errno::ENOMEM- insufficient memory was available to fulfill the request -
Errno::ENOSR- there were insufficient STREAMS resources available to complete the operation -
Errno::ENOTCONN- a receive is attempted on a connection-mode socket that is not connected -
Errno::ENOTSOCK- thesocketdoes not refer to a socket -
Errno::EOPNOTSUPP- the specified flags are not supported for this socket type -
Errno::ETIMEDOUT- the connection timed out during connection establishment or due to a transmission timeout on an active connection
Windows Exceptions
On Windows systems the following system exceptions may be raised if the call to recvfrom fails:
-
Errno::ENETDOWN- the network is down -
Errno::EFAULT- the internal buffer and from parameters onsocketare not part of the user address space, or the internal fromlen parameter is too small to accommodate the peer address -
Errno::EINTR- the (blocking) call was cancelled by an internal call to the WinSock function WSACancelBlockingCall -
Errno::EINPROGRESS- a blocking Windows Sockets 1.1 call is in progress or the service provider is still processing a callback function -
Errno::EINVAL-sockethas not been bound with a call to bind, or an unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled, or (for byte stream-style sockets only) the internal len parameter onsocketwas zero or negative -
Errno::EISCONN-socketis already connected. The call to recvfrom is not permitted with a connected socket on a socket that is connection oriented or connectionless. -
Errno::ENETRESET- the connection has been broken due to the keep-alive activity detecting a failure while the operation was in progress. -
Errno::EOPNOTSUPP- MSG_OOB was specified, butsocketis not stream-style such as type SOCK_STREAM. OOB data is not supported in the communication domain associated withsocket, orsocketis unidirectional and supports only send operations -
Errno::ESHUTDOWN-sockethas been shutdown. It is not possible to call recvfrom on a socket after shutdown has been invoked. -
Errno::EWOULDBLOCK-socketis marked as nonblocking and a call to recvfrom would block. -
Errno::EMSGSIZE- the message was too large to fit into the specified buffer and was truncated. -
Errno::ETIMEDOUT- the connection has been dropped, because of a network failure or because the system on the other end went down without notice -
Errno::ECONNRESET- the virtual circuit was reset by the remote side executing a hard or abortive close. The application should close the socket; it is no longer usable. On a UDP-datagram socket this error indicates a previous send operation resulted in an ICMP Port Unreachable message.
# File 'ext/socket/socket.c', line 729
static VALUE
sock_recvfrom(int argc, VALUE *argv, VALUE sock)
{
return rsock_s_recvfrom(sock, argc, argv, RECV_SOCKET);
}
#recvfrom_nonblock(maxlen[, flags[, outbuf[, opts]]]) ⇒ Array, sender_addrinfo
Receives up to maxlen bytes from socket using recvfrom(2) after O_NONBLOCK is set for the underlying file descriptor. flags is zero or more of the MSG_ options. The first element of the results, mesg, is the data received. The second element, sender_addrinfo, contains protocol-specific address information of the sender.
When recvfrom(2) returns 0, Socket#recv_nonblock returns nil. In most cases it means the connection was closed, but for UDP connections it may mean an empty packet was received, as the underlying API makes it impossible to distinguish these two cases.
Parameters
-
maxlen- the maximum number of bytes to receive from the socket -
flags- zero or more of theMSG_options -
outbuf- destination String buffer -
opts- keyword hash, supportingexception: false
Example
# In one file, start this first
require 'socket'
include Socket::Constants
socket = Socket.new(AF_INET, SOCK_STREAM, 0)
sockaddr = Socket.sockaddr_in(2200, 'localhost')
socket.bind(sockaddr)
socket.listen(5)
client, client_addrinfo = socket.accept
begin # emulate blocking recvfrom
pair = client.recvfrom_nonblock(20)
rescue IO::WaitReadable
IO.select([client])
retry
end
data = pair[0].chomp
puts "I only received 20 bytes '#{data}'"
sleep 1
socket.close
# In another file, start this second
require 'socket'
include Socket::Constants
socket = Socket.new(AF_INET, SOCK_STREAM, 0)
sockaddr = Socket.sockaddr_in(2200, 'localhost')
socket.connect(sockaddr)
socket.puts "Watch this get cut short!"
socket.close
Refer to #recvfrom for the exceptions that may be thrown if the call to recvfrom_nonblock fails.
recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure, including Errno::EWOULDBLOCK.
If the exception is Errno::EWOULDBLOCK or Errno::EAGAIN, it is extended by IO::WaitReadable. So IO::WaitReadable can be used to rescue the exceptions for retrying recvfrom_nonblock.
By specifying a keyword argument exception to false, you can indicate that recvfrom_nonblock should not raise an IO::WaitReadable exception, but return the symbol :wait_readable instead.
See
# File 'ext/socket/lib/socket.rb', line 541
def recvfrom_nonblock(len, flag = 0, str = nil, exception: true) __recvfrom_nonblock(len, flag, str, exception) end
#sysaccept ⇒ Socket, client_addrinfo
Accepts an incoming connection returning an array containing the (integer) file descriptor for the incoming connection, client_socket_fd, and an ::Addrinfo, client_addrinfo.
Example
# In one script, start this first
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.bind( sockaddr )
socket.listen( 5 )
client_fd, client_addrinfo = socket.sysaccept
client_socket = Socket.for_fd( client_fd )
puts "The client said, '#{client_socket.readline.chomp}'"
client_socket.puts "Hello from script one!"
socket.close
# In another script, start this second
require 'socket'
include Socket::Constants
socket = Socket.new( AF_INET, SOCK_STREAM, 0 )
sockaddr = Socket.pack_sockaddr_in( 2200, 'localhost' )
socket.connect( sockaddr )
socket.puts "Hello from script 2."
puts "The server said, '#{socket.readline.chomp}'"
socket.close
Refer to #accept for the exceptions that may be thrown if the call to sysaccept fails.
See
# File 'ext/socket/socket.c', line 823
static VALUE
sock_sysaccept(VALUE server)
{
union_sockaddr buffer;
socklen_t length = (socklen_t)sizeof(buffer);
VALUE peer = rsock_s_accept(0, server, &buffer.addr, &length);
return rb_assoc_new(peer, rsock_io_socket_addrinfo(peer, &buffer.addr, length));
}