るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
399件ヒット [1-100件を表示] (0.121秒)
トップページ > クエリ:n[x] > バージョン:2.5.0[x] > モジュール:Socket::Constants[x]

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n
  3. rsa n=
  4. openssl n
  5. openssl n=

ライブラリ

キーワード

検索結果

<< 1 2 3 ... > >>

Socket::Constants::IFF_POINTOPOINT (27604.0)

point-to-point link

point-to-point link

Socket::Constants::AF_NS -> Integer (27304.0)

@todo XEROX NS protocol。 Socket.open の第一引数 domain に使用します。

@todo
XEROX NS protocol。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_UNSPEC -> Integer (27304.0)

アドレスファミリー不定。

アドレスファミリー不定。

@see Socket.open, sys/socket.h(header)

Socket::Constants::INADDR_UNSPEC_GROUP -> Integer (27304.0)

The reserved multicast group。 IPv4の 244.0.0.0 に対応する整数です。

The reserved multicast group。
IPv4の 244.0.0.0 に対応する整数です。

@see http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml, 5771

Socket::Constants::IP_OPTIONS -> Integer (27304.0)

IP options to be included in packets。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...IP options to be included in packets。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP,
ip(4freebsd), ip(7linux)...

絞り込み条件を変える

Socket::Constants::IP_PKTOPTIONS -> Integer (27304.0)

@todo Receive packet options with datagrams

@todo
Receive packet options with datagrams

Socket::Constants::PF_NS -> Integer (27304.0)

@todo XEROX NS protocol。 Socket.open の第一引数 domain に使用します。

@todo
XEROX NS protocol。
Socket.open の第一引数 domain に使用します。

Socket::Constants::PF_UNSPEC -> Integer (27304.0)

プロトコルファミリー不定。

...プロトコルファミリー不定。

@see Socket::Constants::AF_UNSPEC, Socket.open...

Socket::Constants::SCM_TIMESTAMPNS -> Integer (27304.0)

Timestamp (timespec).

Timestamp (timespec).

Socket::AncillaryData の type として利用します。

@see Socket::AncillaryData, Socket::AncillaryData#timestamp
BasicSocket#sendmsg, BasicSocket#recvmsg

Socket::Constants::SO_SECURITY_ENCRYPTION_TRANSPORT -> Integer (27304.0)

@todo

@todo

絞り込み条件を変える

Socket::Constants::SO_TIMESTAMPNS -> Integer (27304.0)

@todo Receive nanosecond timestamp with datagrams (timespec)。

...@todo
Receive nanosecond timestamp with datagrams (timespec)。

@see Socket::Constants::SO_TIMESTAMP,
Socket::AncillaryData#timestamp...

Socket::Constants::AF_CNT -> Integer (18604.0)

@todo Computer Network Technology。 Socket.open の第一引数 domain に使用します。

@todo
Computer Network Technology。
Socket.open の第一引数 domain に使用します。

Socket::Constants::EAI_BADHINTS -> Integer (18604.0)

Invalid value for hints

Invalid value for hints

getaddrinfo(3), getnameinfo(3) などの
エラーコードです。
対応する Socket.getaddrinfo, Addrinfo.getaddrinfo などは
エラーを SocketError に変換するため、この定数は直接は利用しません。

Socket::Constants::IPPROTO_FRAGMENT -> Integer (18604.0)

IPv6 fragmentation header。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

IPv6 fragmentation header。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

また、Socket.open の protocol 引数に渡す利用法もあります。

@see 2292

Socket::Constants::IPV6_DONTFRAG -> Integer (18604.0)

Don't fragment packets。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Don't fragment packets。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
3542...

絞り込み条件を変える

Socket::Constants::IP_DONTFRAG -> Integer (18604.0)

Don't fragment packets。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Don't fragment packets。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP,
ip(4freebsd)...

Socket::Constants::IP_MINTTL -> Integer (18604.0)

Minimum TTL allowed for received packets。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Minimum TTL allowed for received packets。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP, ip(4freebsd)...

Socket::Constants::IP_PMTUDISC_DONT -> Integer (18604.0)

Never send DF frames。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Never send DF frames。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP, ip(7linux)...

Socket::Constants::IP_PMTUDISC_WANT -> Integer (18604.0)

Use per-route hints。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Use per-route hints。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP, ip(7linux)...

Socket::Constants::MSG_DONTROUTE -> Integer (18604.0)

Send without using the routing tables。

Send without using the routing tables。

BasicSocket#send, BasicSocket#sendmsg の
flags 引数に用います。

@see sys/socket.h(header),
send(2linux)
send(2freebsd)

絞り込み条件を変える

Socket::Constants::MSG_DONTWAIT -> Integer (18604.0)

This message should be non-blocking。

This message should be non-blocking。

BasicSocket#send, BasicSocket#sendmsg,
BasicSocket#recv, BasicSocket#recvmsg の
flags 引数に用います。

@see send(2linux), recv(2linux),
recv(2freebsd)

Socket::Constants::PF_CNT -> Integer (18604.0)

@todo Computer Network Technology。 Socket.open の第一引数 domain に使用します。

@todo
Computer Network Technology。
Socket.open の第一引数 domain に使用します。

Socket::Constants::SCM_BINTIME -> Integer (18604.0)

Timestamp (bintime).

Timestamp (bintime).

Socket::AncillaryData の type として利用します。

@see Socket::AncillaryData, Socket::AncillaryData#timestamp
BasicSocket#sendmsg, BasicSocket#recvmsg

Socket::Constants::SCM_CREDENTIALS -> Integer (18604.0)

The sender's credentials

The sender's credentials

Socket::AncillaryData の type として利用します。

@see Socket::AncillaryData,
BasicSocket#sendmsg, BasicSocket#recvmsg,
unix(7linux)

Socket::Constants::SOPRI_INTERACTIVE -> Integer (18604.0)

@todo Interactive socket priority

@todo
Interactive socket priority

絞り込み条件を変える

Socket::Constants::SO_BINTIME -> Integer (18604.0)

Timestamp (bintime)。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Timestamp (bintime)。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see getsockopt(2freebsd), Socket::Constants::SOL_SOCKET
Socket::Constants
::SO_TIMESTAMP,
Socket::AncillaryData#timestamp...

Socket::Constants::SO_DONTROUTE -> Integer (18604.0)

Send without using the routing tables。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Send without using the routing tables。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see sys/socket.h(header), getsockopt(2freebsd),
socket(7linux), Socket::Constants::SOL_SOCKET...

Socket::Constants::SO_DONTTRUNC -> Integer (18604.0)

@todo Retain unread data

@todo
Retain unread data

Socket::Constants::SO_SECURITY_AUTHENTICATION -> Integer (18604.0)

@todo

@todo

Socket::Constants::SO_WANTMORE -> Integer (18604.0)

@todo Give a hint when more data is ready。

@todo
Give a hint when more data is ready。

絞り込み条件を変える

Socket::Constants::SO_WANTOOBFLAG -> Integer (18604.0)

@todo OOB data is wanted in MSG_FLAG on receive。

@todo
OOB data is wanted in MSG_FLAG on receive。

Socket::Constants::TCP_KEEPCNT -> Integer (18604.0)

Maximum number of keepalive probes allowed before dropping a connection。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

Maximum number of keepalive probes allowed before dropping a connection。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see tcp(7linux)

Socket::Constants::TCP_KEEPINTVL -> Integer (18604.0)

Time between keepalive probes。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

Time between keepalive probes。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see tcp(7linux)

Socket::Constants::AF_HYLINK -> Integer (18304.0)

@todo NSC Hyperchannel。 Socket.open の第一引数 domain に使用します。

@todo
NSC Hyperchannel。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_IMPLINK -> Integer (18304.0)

@todo ARPANET IMP。 Socket.open の第一引数 domain に使用します。

@todo
ARPANET IMP。
Socket.open の第一引数 domain に使用します。

絞り込み条件を変える

Socket::Constants::AF_INET -> Integer (18304.0)

IPv4。 Socket.open の第一引数 domain に使用します。

IPv4。
Socket.open の第一引数 domain に使用します。

@see sys/socket.h(header), socket(2freebsd), ip(7linux)

Socket::Constants::AF_INET6 -> Integer (18304.0)

IPv6。 Socket.open の第一引数 domain に使用します。

IPv6。
Socket.open の第一引数 domain に使用します。

@see sys/socket.h(header), socket(2freebsd), ipv6(7linux)

Socket::Constants::AF_ISDN -> Integer (18304.0)

@todo Integrated Services Digital Network。 Socket.open の第一引数 domain に使用します。

@todo
Integrated Services Digital Network。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_LINK -> Integer (18304.0)

@todo Link layer interface。 Socket.open の第一引数 domain に使用します。

@todo
Link layer interface。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_NATM -> Integer (18304.0)

@todo Native ATM access。 Socket.open の第一引数 domain に使用します。

@todo
Native ATM access。
Socket.open の第一引数 domain に使用します。

絞り込み条件を変える

Socket::Constants::AF_NDRV -> Integer (18304.0)

@todo Network driver raw access。 Socket.open の第一引数 domain に使用します。

@todo
Network driver raw access。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_NETBIOS -> Integer (18304.0)

@todo NetBIOS。 Socket.open の第一引数 domain に使用します。

@todo
NetBIOS。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_NETGRAPH -> Integer (18304.0)

Netgraph sockets。 Socket.open の第一引数 domain に使用します。

Netgraph sockets。
Socket.open の第一引数 domain に使用します。

@see socket(2freebsd)

Socket::Constants::AF_SNA -> Integer (18304.0)

@todo IBM SNA protocol。 Socket.open の第一引数 domain に使用します。

@todo
IBM SNA protocol。
Socket.open の第一引数 domain に使用します。

Socket::Constants::AF_UNIX -> Integer (18304.0)

Unix domain socket。 Socket.open の第一引数 domain に使用します。

Unix domain socket。
Socket.open の第一引数 domain に使用します。

@see sys/socket.h(header), unix(7linux)

絞り込み条件を変える

Socket::Constants::AI_ADDRCONFIG -> Integer (18304.0)

Accept only if any address is assigned。

Accept only if any address is assigned。

Socket.getaddrinfo, Addrinfo.getaddrinfo の引数 flags に渡す
定数です。

@see getaddrinfo(3)

Socket::Constants::AI_CANONNAME -> Integer (18304.0)

Fill in the canonical name。

Fill in the canonical name。

Socket.getaddrinfo, Addrinfo.getaddrinfo の引数 flags に渡す
定数です。

@see getaddrinfo(3)

Socket::Constants::AI_NUMERICHOST -> Integer (18304.0)

Prevent host name resolution。

Prevent host name resolution。

Socket.getaddrinfo, Addrinfo.getaddrinfo の引数 flags に渡す
定数です。

@see getaddrinfo(3)

Socket::Constants::AI_NUMERICSERV -> Integer (18304.0)

Prevent server name resolution。

Prevent server name resolution。

Socket.getaddrinfo, Addrinfo.getaddrinfo の引数 flags に渡す
定数です。

@see getaddrinfo(3)

Socket::Constants::EAI_AGAIN -> Integer (18304.0)

Temporary failure in name resolution

Temporary failure in name resolution

getaddrinfo(3), getnameinfo(3) などの
エラーコードです。
対応する Socket.getaddrinfo, Addrinfo.getaddrinfo などは
エラーを SocketError に変換するため、この定数は直接は利用しません。

@see getaddrinfo(3linux), gai_strerror(3freebsd)

絞り込み条件を変える

Socket::Constants::EAI_NODATA -> Integer (18304.0)

No address associated with hostname

No address associated with hostname

getaddrinfo(3), getnameinfo(3) などの
エラーコードです。
対応する Socket.getaddrinfo, Addrinfo.getaddrinfo などは
エラーを SocketError に変換するため、この定数は直接は利用しません。

@see getaddrinfo(3linux)

Socket::Constants::EAI_NONAME -> Integer (18304.0)

Hostname nor servname, or not known

Hostname nor servname, or not known

getaddrinfo(3), getnameinfo(3) などの
エラーコードです。
対応する Socket.getaddrinfo, Addrinfo.getaddrinfo などは
エラーを SocketError に変換するため、この定数は直接は利用しません。

@see getaddrinfo(3linux), gai_strerror(3freebsd)

Socket::Constants::IFF_802_1Q_VLAN (18304.0)

802.1Q VLAN device

802.1Q VLAN device

Socket::Constants::IFF_BONDING (18304.0)

bonding master or slave

bonding master or slave

Socket::Constants::IFF_CANTCHANGE (18304.0)

flags not changeable

flags not changeable

絞り込み条件を変える

Socket::Constants::IFF_CANTCONFIG (18304.0)

unconfigurable using ioctl(2)

unconfigurable using ioctl(2)

Socket::Constants::IFF_DISABLE_NETPOLL (18304.0)

disable netpoll at run-time

disable netpoll at run-time

Socket::Constants::IFF_DONT_BRIDGE (18304.0)

disallow bridging this ether dev

disallow bridging this ether dev

Socket::Constants::IFF_DORMANT (18304.0)

driver signals dormant

driver signals dormant

Socket::Constants::IFF_DRV_RUNNING (18304.0)

resources allocated

resources allocated

絞り込み条件を変える

Socket::Constants::IFF_DYING (18304.0)

interface is winding down

interface is winding down

Socket::Constants::IFF_DYNAMIC (18304.0)

dialup device with changing addresses

dialup device with changing addresses

Socket::Constants::IFF_LINK0 (18304.0)

per link layer defined bit 0

per link layer defined bit 0

Socket::Constants::IFF_LINK1 (18304.0)

per link layer defined bit 1

per link layer defined bit 1

Socket::Constants::IFF_LINK2 (18304.0)

per link layer defined bit 2

per link layer defined bit 2

絞り込み条件を変える

Socket::Constants::IFF_LIVE_ADDR_CHANGE (18304.0)

hardware address change when it's running

hardware address change when it's running

Socket::Constants::IFF_MACVLAN_PORT (18304.0)

device used as macvlan port

device used as macvlan port

Socket::Constants::IFF_MASTER_ARPMON (18304.0)

bonding master, ARP mon in use

bonding master, ARP mon in use

Socket::Constants::IFF_MONITOR (18304.0)

user-requested monitor mode

user-requested monitor mode

Socket::Constants::IFF_NOARP (18304.0)

no address resolution protocol

no address resolution protocol

絞り込み条件を変える

Socket::Constants::IFF_NOTRAILERS (18304.0)

avoid use of trailers

avoid use of trailers

Socket::Constants::IFF_RENAMING (18304.0)

interface is being renamed

interface is being renamed

Socket::Constants::IFF_RUNNING (18304.0)

resources allocated

resources allocated

Socket::Constants::IFF_SLAVE_INACTIVE (18304.0)

bonding slave not the curr. active

bonding slave not the curr. active

Socket::Constants::IFF_SLAVE_NEEDARP (18304.0)

need ARPs for validation

need ARPs for validation

絞り込み条件を変える

Socket::Constants::IFF_SUPP_NOFCS (18304.0)

sending custom FCS

sending custom FCS

Socket::Constants::IFF_TX_SKB_SHARING (18304.0)

sharing skbs on transmit

sharing skbs on transmit

Socket::Constants::IFF_UNICAST_FLT (18304.0)

unicast filtering

unicast filtering

Socket::Constants::IFF_WAN_HDLC (18304.0)

WAN HDLC device

WAN HDLC device

Socket::Constants::IFNAMSIZ -> Integer (18304.0)

インターフェース名文字列の最大長さ。

インターフェース名文字列の最大長さ。

@see net/if.h(header)

絞り込み条件を変える

Socket::Constants::IF_NAMESIZE -> Integer (18304.0)

インターフェース名文字列の最大長さ。

インターフェース名文字列の最大長さ。

@see net/if.h(header)

Socket::Constants::INADDR_ALLHOSTS_GROUP -> Integer (18304.0)

Multicast group for all systems on this subset。 IPv4の 244.0.0.1 に対応する整数です。

Multicast group for all systems on this subset。
IPv4の 244.0.0.1 に対応する整数です。

@see http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml, 5771

Socket::Constants::INADDR_ANY -> Integer (18304.0)

A socket bound to INADDR_ANY receives packets from all interfaces and sends from the default IP address。 IPv4アドレスの 0.0.0.0 に対応する整数です。

A socket bound to INADDR_ANY receives packets from
all interfaces and sends from the default IP address。
IPv4アドレスの 0.0.0.0 に対応する整数です。

@see netinet/in.h(header), ip(7linux), ip(4freebsd)

Socket::Constants::INADDR_BROADCAST -> Integer (18304.0)

The network broadcast address。 IPv4のブロードキャストアドレス 255.255.255.255 に対応する整数です。

The network broadcast address。
IPv4のブロードキャストアドレス 255.255.255.255 に対応する整数です。

@see netinet/in.h(header), ip(7linux), ip(4freebsd)

Socket::Constants::INADDR_LOOPBACK -> Integer (18304.0)

The loopback address。 IPv4のループバックアドレス 127.0.0.1 に対応する整数です。

The loopback address。
IPv4のループバックアドレス 127.0.0.1 に対応する整数です。

@see ip(7linux), ip(4freebsd)

絞り込み条件を変える

Socket::Constants::INADDR_MAX_LOCAL_GROUP -> Integer (18304.0)

The last local network multicast group。 IPv4の 244.0.0.255 に対応する整数です。

The last local network multicast group。
IPv4の 244.0.0.255 に対応する整数です。

@see http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml, 5771

Socket::Constants::INADDR_NONE -> Integer (18304.0)

A bitmask for matching no valid IP address。 エラーを表すアドレス値です。

A bitmask for matching no valid IP address。
エラーを表すアドレス値です。

Socket::Constants::INET6_ADDRSTRLEN -> Integer (18304.0)

IPv6アドレス文字列の最大長。

IPv6アドレス文字列の最大長。

@see netinet/in.h(header)

Socket::Constants::INET_ADDRSTRLEN -> Integer (18304.0)

IPv4アドレス文字列の最大長。

IPv4アドレス文字列の最大長。

@see netinet/in.h(header)

Socket::Constants::IPPROTO_EON -> Integer (18304.0)

@todo ISO cnlp。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

@todo
ISO cnlp。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

また、Socket.open の protocol 引数に渡す利用法もあります。

絞り込み条件を変える

Socket::Constants::IPPROTO_ND -> Integer (18304.0)

@todo Sun net disk protocol BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

@todo
Sun net disk protocol
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

また、Socket.open の protocol 引数に渡す利用法もあります。

Socket::Constants::IPPROTO_NONE -> Integer (18304.0)

IP6 no next header。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

IP6 no next header。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

また、Socket.open の protocol 引数に渡す利用法もあります。

@see 2292

Socket::Constants::IPPROTO_ROUTING -> Integer (18304.0)

BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

また、Socket.open の protocol 引数に渡す利用法もあります。

@see 2292

Socket::Constants::IPV6_JOIN_GROUP -> Integer (18304.0)

Join a multicast group。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Join a multicast group。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
netinet/in.h(header), ip6(4freebsd), ipv6(7linux),
3493...

Socket::Constants::IPV6_NEXTHOP -> Integer (18304.0)

Next hop address。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Next hop address。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
3542...

絞り込み条件を変える

Socket::Constants::IPV6_PKTINFO -> Integer (18304.0)

Receive packet information with datagram。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Receive packet information with datagram。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
ip6(4freebsd), ipv6(7linux),
3542...

Socket::Constants::IPV6_RECVPKTINFO -> Integer (18304.0)

Receive destination IP address and incoming interface。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Receive destination IP address and incoming interface。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
3542...

Socket::Constants::IPV6_UNICAST_HOPS -> Integer (18304.0)

IPv6 unicast hop limit。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...IPv6 unicast hop limit。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
netinet/in.h(header), ip6(4freebsd), ipv6(7linux),
3493...

Socket::Constants::IPV6_USE_MIN_MTU -> Integer (18304.0)

Use the minimum MTU size。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Use the minimum MTU size。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
3542...

Socket::Constants::IPV6_V6ONLY -> Integer (18304.0)

Only bind IPv6。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Only bind IPv6。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
netinet/in.h(header), ip6(4freebsd), ipv6(7linux),
3493...

絞り込み条件を変える

<< 1 2 3 ... > >>