るりまサーチ (Ruby 2.6.0)

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

別のキーワード

  1. socket open
  2. _builtin open
  3. csv open
  4. tempfile open
  5. zlib open

種類

ライブラリ

キーワード

検索結果

<< 1 2 > >>

Socket.open(domain, type, protocol=0) -> Socket (45307.0)

新しいソケットを生成します。domain、type、 protocol はインクルードファイルにある定数で指定しま す。ほとんどの定数は Socket::AF_INET のように Socket クラスの定数として定義されています。domain とtype に関しては、"AF_INET", "SOCK_STREAM" のように文字列でも指定できますが、文 字列ですべての機能を指定できる保証はありません。

...します。domain、type、
protocol はインクルードファイルにある定数で指定しま
す。ほとんどの定数は Socket::AF_INET のように
Socket
クラスの定数として定義されています。domain
とtype に関しては、"AF_INET",
"SOCK_STREAM" のように文字...
...りません。

例えば、IPv4 の TCP ソケットは以下のように生成されます。

require 'socket'

s = Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)

なお、socket(2) の domain 引数において AF_ と PF_ のどちらの定数を使用するかについては混乱...
...ここでは AF_ を使用しています。

@param domain 例えば、<sys/socket.h> のようなインクルードファイルに定義されている定数を指定します。
@param type 例えば、<sys/socket.h> のようなインクルードファイルに定義されている定数を...

Socket.pair(domain, type, protocol=0) -> Array (124.0)

相互に結合されたソケットのペアを含む2要素の配列を返します。 引数の指定は Socket.open と同じです。

...のペアを含む2要素の配列を返します。
引数の指定は Socket.open と同じです。

@param domain Socket.open を参照してください。

@param type Socket.open を参照してください。

@param protocol Socket.open を参照してください。

@see Socket.open...

Socket.socketpair(domain, type, protocol=0) -> Array (124.0)

相互に結合されたソケットのペアを含む2要素の配列を返します。 引数の指定は Socket.open と同じです。

...のペアを含む2要素の配列を返します。
引数の指定は Socket.open と同じです。

@param domain Socket.open を参照してください。

@param type Socket.open を参照してください。

@param protocol Socket.open を参照してください。

@see Socket.open...

Socket::AF_ISO -> Integer (100.0)

@todo ISO Open Systems Interconnection protocols。 Socket.open の第一引数 domain に使用します。

...@todo
ISO Open Systems Interconnection protocols。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_OSI -> Integer (100.0)

@todo ISO Open Systems Interconnection protocols。 Socket.open の第一引数 domain に使用します。

...@todo
ISO Open Systems Interconnection protocols。
Socket
.open の第一引数 domain に使用します。...

絞り込み条件を変える

Socket::PF_ISO -> Integer (100.0)

@todo ISO Open Systems Interconnection protocols。 Socket.open の第一引数 domain に使用します。

...@todo
ISO Open Systems Interconnection protocols。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_OSI -> Integer (100.0)

@todo ISO Open Systems Interconnection protocols。 Socket.open の第一引数 domain に使用します。

...@todo
ISO Open Systems Interconnection protocols。
Socket
.open の第一引数 domain に使用します。...

Socket::SOCK_DGRAM -> Integer (70.0)

データグラム通信。 Socket.open の第二引数 type に使用します。

...データグラム通信。
Socket
.open の第二引数 type に使用します。

@see socket(2), Socket.open...

Socket::SOCK_PACKET -> Integer (70.0)

デバイスレベルインターフェース。Obsoleteであり使うべきではない。 Socket.open の第二引数 type に使用します。

...デバイスレベルインターフェース。Obsoleteであり使うべきではない。
Socket
.open の第二引数 type に使用します。

@see packet(7linux), Socket.open...

Socket::SOCK_RAW -> Integer (70.0)

RAW ソケット。 Socket.open の第二引数 type に使用します。

...RAW ソケット。
Socket
.open の第二引数 type に使用します。

@see sys/socket.h(header), socket(2linux),
raw(7linux), Socket.open...

絞り込み条件を変える

Socket::SOCK_RDM -> Integer (70.0)

信頼性のあるデータグラム通信。 Socket.open の第二引数 type に使用します。

...信頼性のあるデータグラム通信。
Socket
.open の第二引数 type に使用します。

@see socket(2linux), Socket.open...

Socket::SOCK_SEQPACKET -> Integer (70.0)

固定最大長を持つストリーム通信。 Socket.open の第二引数 type に使用します。

...固定最大長を持つストリーム通信。
Socket
.open の第二引数 type に使用します。

@see Socket.open, socket(2), socket(2linux),
socket
(2freebsd)...

Socket::SOCK_STREAM -> Integer (70.0)

ストリーム通信。 Socket.open の第二引数 type に使用します。

...ストリーム通信。
Socket
.open の第二引数 type に使用します。

@see Socket.open, socket(2), socket(2linux),
socket
(2freebsd)...

Socket::AF_APPLETALK -> Integer (52.0)

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

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

@see socket(2linux), socket(2freebsd), ddp(7linux)...

Socket::AF_ATM -> Integer (52.0)

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

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

@see socket(2freebsd)...

絞り込み条件を変える

Socket::AF_AX25 -> Integer (52.0)

ITU-T X.25 / ISO-8208。 Socket.open の第一引数 domain に使用します。

...ITU-T X.25 / ISO-8208。
Socket
.open の第一引数 domain に使用します。

@see socket(2linux)...

Socket::AF_CCITT -> Integer (52.0)

@todo CCITT プロトコル。 Socket.open の第一引数 domain に使用します。

...@todo
CCITT プロトコル。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_CHAOS -> Integer (52.0)

@todo MIT CHAOS プロトコル。 Socket.open の第一引数 domain に使用します。

...@todo
MIT CHAOS プロトコル。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_CNT -> Integer (52.0)

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

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

Socket::AF_COIP -> Integer (52.0)

@todo connection-oriented IP。 Socket.open の第一引数 domain に使用します。

...@todo
connection-oriented IP。
Socket
.open の第一引数 domain に使用します。...

絞り込み条件を変える

Socket::AF_DATAKIT -> Integer (52.0)

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

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

Socket::AF_DEC -> Integer (52.0)

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

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

Socket::AF_DLI -> Integer (52.0)

@todo DEC Direct data link interface。 Socket.open の第一引数 domain に使用します。

...@todo
DEC Direct data link interface。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_E164 -> Integer (52.0)

@todo CCITT E.164 recommendation。 Socket.open の第一引数 domain に使用します。

...@todo
CCITT E.164 recommendation。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_ECMA -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::AF_HYLINK -> Integer (52.0)

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

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

Socket::AF_IMPLINK -> Integer (52.0)

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

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

Socket::AF_INET -> Integer (52.0)

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

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

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

Socket::AF_INET6 -> Integer (52.0)

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

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

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

Socket::AF_IPX -> Integer (52.0)

IPX(Novell Internet Packet eXchange protocol)。 Socket.open の第一引数 domain に使用します。

...IPX(Novell Internet Packet eXchange protocol)。
Socket
.open の第一引数 domain に使用します。

@see socket(3linux)...

絞り込み条件を変える

Socket::AF_ISDN -> Integer (52.0)

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

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

Socket::AF_LAT -> Integer (52.0)

@todo Local Area Transport protocol。 Socket.open の第一引数 domain に使用します。

...@todo
Local Area Transport protocol。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_LINK -> Integer (52.0)

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

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

Socket::AF_LOCAL -> Integer (52.0)

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

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

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

Socket::AF_NATM -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::AF_NDRV -> Integer (52.0)

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

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

Socket::AF_NETBIOS -> Integer (52.0)

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

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

Socket::AF_NETGRAPH -> Integer (52.0)

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

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

@see socket(2freebsd)...

Socket::AF_NS -> Integer (52.0)

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

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

Socket::AF_PACKET -> Integer (52.0)

デバイスレベルインターフェース。 Socket.open の第一引数 domain に使用します。

...デバイスレベルインターフェース。
Socket
.open の第一引数 domain に使用します。

@see socket(2linux), packet(7linux)...

絞り込み条件を変える

Socket::AF_PPP -> Integer (52.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

...@todo
Point-to-Point Protocol。
Socket
.open の第一引数 domain に使用します。...

Socket::AF_PUP -> Integer (52.0)

PUP(PARC Universal Packet)。 Socket.open の第一引数 domain に使用します。

...PUP(PARC Universal Packet)。
Socket
.open の第一引数 domain に使用します。

@see socket(2freebsd)...

Socket::AF_ROUTE -> Integer (52.0)

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

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

@todo...

Socket::AF_SIP -> Integer (52.0)

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

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

Socket::AF_SNA -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::AF_UNIX -> Integer (52.0)

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

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

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

Socket::IFF_OVS_DATAPATH (52.0)

device used as Open vSwitch datapath port

device used as Open vSwitch datapath port

Socket::PF_APPLETALK -> Integer (52.0)

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

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

@see socket(2linux), socket(2freebsd), ddp(7linux)...

Socket::PF_ATM -> Integer (52.0)

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

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

@see socket(2freebsd)...

Socket::PF_AX25 -> Integer (52.0)

ITU-T X.25 / ISO-8208。 Socket.open の第一引数 domain に使用します。

...ITU-T X.25 / ISO-8208。
Socket
.open の第一引数 domain に使用します。

@see socket(2linux)...

絞り込み条件を変える

Socket::PF_CCITT -> Integer (52.0)

@todo CCITT プロトコル。 Socket.open の第一引数 domain に使用します。

...@todo
CCITT プロトコル。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_CHAOS -> Integer (52.0)

@todo MIT CHAOS プロトコル。 Socket.open の第一引数 domain に使用します。

...@todo
MIT CHAOS プロトコル。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_CNT -> Integer (52.0)

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

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

Socket::PF_COIP -> Integer (52.0)

@todo connection-oriented IP。 Socket.open の第一引数 domain に使用します。

...@todo
connection-oriented IP。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_DATAKIT -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::PF_DEC -> Integer (52.0)

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

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

Socket::PF_DLI -> Integer (52.0)

@todo DEC Direct data link interface。 Socket.open の第一引数 domain に使用します。

...@todo
DEC Direct data link interface。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_ECMA -> Integer (52.0)

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

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

Socket::PF_HYLINK -> Integer (52.0)

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

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

Socket::PF_IMPLINK -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::PF_INET -> Integer (52.0)

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

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

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

Socket::PF_INET6 -> Integer (52.0)

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

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

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

Socket::PF_IPX -> Integer (52.0)

IPX(Novell Internet Packet eXchange protocol)。 Socket.open の第一引数 domain に使用します。

...IPX(Novell Internet Packet eXchange protocol)。
Socket
.open の第一引数 domain に使用します。

@see socket(3linux)...

Socket::PF_ISDN -> Integer (52.0)

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

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

Socket::PF_KEY -> Integer (52.0)

Internal key-management function。 Socket.open の第一引数 domain に使用します。

...Internal key-management function。
Socket
.open の第一引数 domain に使用します。

@see socket(2freebsd)...

絞り込み条件を変える

Socket::PF_LAT -> Integer (52.0)

@todo Local Area Transport protocol。 Socket.open の第一引数 domain に使用します。

...@todo
Local Area Transport protocol。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_LINK -> Integer (52.0)

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

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

Socket::PF_LOCAL -> Integer (52.0)

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

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

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

Socket::PF_NATM -> Integer (52.0)

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

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

Socket::PF_NDRV -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::PF_NETBIOS -> Integer (52.0)

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

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

Socket::PF_NETGRAPH -> Integer (52.0)

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

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

@see socket(2freebsd)...

Socket::PF_NS -> Integer (52.0)

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

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

Socket::PF_PACKET -> Integer (52.0)

デバイスレベルインターフェース。 Socket.open の第一引数 domain に使用します。

...デバイスレベルインターフェース。
Socket
.open の第一引数 domain に使用します。

@see socket(2linux), packet(7linux)...

Socket::PF_PIP -> Integer (52.0)

Help Identify PIP packets。 Socket.open の第一引数 domain に使用します。

...Help Identify PIP packets。
Socket
.open の第一引数 domain に使用します。

@see socket(2freebsd)...

絞り込み条件を変える

Socket::PF_PPP -> Integer (52.0)

@todo Point-to-Point Protocol。 Socket.open の第一引数 domain に使用します。

...@todo
Point-to-Point Protocol。
Socket
.open の第一引数 domain に使用します。...

Socket::PF_PUP -> Integer (52.0)

PUP(PARC Universal Packet)。 Socket.open の第一引数 domain に使用します。

...PUP(PARC Universal Packet)。
Socket
.open の第一引数 domain に使用します。

@see socket(2freebsd)...

Socket::PF_ROUTE -> Integer (52.0)

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

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

@todo...

Socket::PF_RTIP -> Integer (52.0)

Help Identify RTIP packets。 Socket.open の第一引数 domain に使用します。

...Help Identify RTIP packets。
Socket
.open の第一引数 domain に使用します。

@see socket(2freebsd)...

Socket::PF_SIP -> Integer (52.0)

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

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

絞り込み条件を変える

Socket::PF_SNA -> Integer (52.0)

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

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

Socket::PF_UNIX -> Integer (52.0)

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

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

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

Socket::AF_SYSTEM -> Integer (22.0)

@todo

...@todo

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

Socket::AF_UNSPEC -> Integer (22.0)

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

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

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

Socket::IPPROTO_AH -> Integer (22.0)

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

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

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

@see 2292...

絞り込み条件を変える

Socket::IPPROTO_BIP -> Integer (22.0)

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

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

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

Socket::IPPROTO_DSTOPTS -> Integer (22.0)

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

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

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

@see 2292...

Socket::IPPROTO_EGP -> Integer (22.0)

@todo Exterior Gateway Protocol。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...@todo
Exterior Gateway Protocol。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

Socket::IPPROTO_EON -> Integer (22.0)

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

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

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

Socket::IPPROTO_ESP -> Integer (22.0)

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

...IPv6 Encapsulated Security Payload。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

@see 2292...

絞り込み条件を変える

Socket::IPPROTO_FRAGMENT -> Integer (22.0)

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

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

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

@see 2292...

Socket::IPPROTO_GGP -> Integer (22.0)

@todo Gateway to Gateway Protocol。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...@todo
Gateway to Gateway Protocol。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

Socket::IPPROTO_HELLO -> Integer (22.0)

@todo "hello" routing protocol。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...@todo
"hello" routing protocol。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

Socket::IPPROTO_HOPOPTS -> Integer (22.0)

IPv6 hop-by-hop options。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...IPv6 hop-by-hop options。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

@see 2292...

Socket::IPPROTO_ICMP -> Integer (22.0)

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

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

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

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

絞り込み条件を変える

Socket::IPPROTO_ICMPV6 -> Integer (22.0)

Internet Control Message Protocol for IPv6。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...Internet Control Message Protocol for IPv6。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

@see icmp6(4freebsd), 2292...

Socket::IPPROTO_IDP -> Integer (22.0)

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

...@todo
XNS IDP。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

Socket::IPPROTO_IGMP -> Integer (22.0)

@todo Group Management Protocol。 BasicSocket#getsockopt, BasicSocket#setsockopt の level 引数に使用します。

...@todo
Group Management Protocol。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

Socket::IPPROTO_IP -> Integer (22.0)

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

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

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

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

Socket::IPPROTO_IPV6 -> Integer (22.0)

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

...Internet Protocol Version 6。
BasicSocket#getsockopt, BasicSocket#setsockopt の
level 引数に使用します。

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

@see netinet/in.h(header)
ip6(4freebsd), ipv6(7linux)
2292...

絞り込み条件を変える

<< 1 2 > >>