struct Socket::IPAddress
- Socket::IPAddress
- Socket::Address
- Struct
- Value
- Object
Overview
IP address representation.
Holds a binary representation of an IP address, either translated from a
String
, or directly received from an opened connection (e.g.
Socket#local_address
, Socket#receive
).
IPAddress
won't resolve domains, including localhost
. If you must
resolve an IP, or don't know whether a String
contains an IP or a domain
name, you should use Addrinfo.resolve
instead.
Defined in:
stdlib/socket.crInstance Method Summary
-
#loopback? : Bool
Returns
true
if this IP is a loopback address.
Instance Method Detail
def loopback? : Bool
#
Returns true
if this IP is a loopback address.
In the IPv4 family, loopback addresses are all addresses in the subnet
127.0.0.0/24
. In IPv6 ::1
is the loopback address.