るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
308件ヒット [1-100件を表示] (0.075秒)

別のキーワード

  1. socket new
  2. socket tcp_server_sockets
  3. socket udp_server_sockets
  4. socket listen

ライブラリ

キーワード

検索結果

<< 1 2 3 ... > >>

Socket.open(domain, type, protocol=0) -> Socket (96832.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...

UDPSocket.open(address_family=Socket::AF_INET) -> UDPSocket (78964.0)

新しい UDP ソケットを返します。

新しい UDP ソケットを返します。

address_family には Socket::AF_INET のような整数、:INET のような
シンボル、"INET" のような文字列を指定することができます。

require 'socket'

UDPSocket.new # => #<UDPSocket:fd 3>
UDPSocket.new(Socket::AF_INET6) # => #<UDPSocket:fd 4>

@param address_family ソケットのアドレスファミリー

UNIXSocket.open(path) -> UNIXSocket (78625.0)

path で指定したパス名を用いてソケットを接続します。

path で指定したパス名を用いてソケットを接続します。

ブロックを省略すると接続したソケットを返します。

ブロックを渡した場合は、接続したソケットを引数としてそのブロックを呼びだし、
ブロック終了時にソケットを閉じます。この場合には
ブロックの評価値を返り値として返します。

@param path 接続先のパス名文字列

require 'socket'

s = UNIXSocket.new("/tmp/sock")
s.send("hello", 0)

SOCKSSocket.open(host, service) -> SOCKSSocket (78604.0)

host で指定したホストの service で指定したポートと接続したソケッ トを返します。host はホスト名、またはインターネットアドレスを 示す文字列、service は /etc/services (または NIS) に登録されている サービス名かポート番号です。

host で指定したホストの service で指定したポートと接続したソケッ
トを返します。host はホスト名、またはインターネットアドレスを
示す文字列、service は /etc/services (または NIS) に登録されている
サービス名かポート番号です。

@param host ホスト名、またはインターネットアドレスを示す文字列を指定します。
@param service /etc/services (または NIS) に登録されているサービス名かポート番号です。

TCPSocket.open(host, service, local_host=nil, local_service=nil) -> TCPSocket (78604.0)

host で指定したホストの service で指定したポートと接続したソケッ トを返します。host はホスト名、またはインターネットアドレスを 示す文字列、service は /etc/services (または NIS) に登録されている サービス名かポート番号です。

host で指定したホストの service で指定したポートと接続したソケッ
トを返します。host はホスト名、またはインターネットアドレスを
示す文字列、service は /etc/services (または NIS) に登録されている
サービス名かポート番号です。

引数 local_host, local_service を指定した場合、そのアドレス
に対して bind(2) します。

@param host ホスト名、またはインターネットアドレスを示す文字列を指定します。
@param service /etc/services (または N...

絞り込み条件を変える

UNIXSocket.open(path) {|sock| ...} -> object (78325.0)

path で指定したパス名を用いてソケットを接続します。

path で指定したパス名を用いてソケットを接続します。

ブロックを省略すると接続したソケットを返します。

ブロックを渡した場合は、接続したソケットを引数としてそのブロックを呼びだし、
ブロック終了時にソケットを閉じます。この場合には
ブロックの評価値を返り値として返します。

@param path 接続先のパス名文字列

require 'socket'

s = UNIXSocket.new("/tmp/sock")
s.send("hello", 0)

TCPServer.open(host=nil, service) -> TCPServer (69358.0)

新しいサーバー接続をオープンします。service は /etc/services (または NIS) に登録されているサービ ス名かポート番号で指定します。host を指定した時は 指定したホストに対しての接続だけを受け付けます。

新しいサーバー接続をオープンします。service は
/etc/services (または NIS) に登録されているサービ
ス名かポート番号で指定します。host を指定した時は
指定したホストに対しての接続だけを受け付けます。

省略時は全てのホストへの接続要求を受け付けることになります。
new, open は内部では getaddrinfo(3) を呼び出しており、
複数のアドレス構造体が検出された場合、
最初に見つかったものを返します。
実行環境によっては IPv4, IPv6 のどちらか専用の接続になる場合がありますが、
その場合、host を省略せず明示的に指定することで、接...

UNIXServer.open(path) -> UNIXServer (69325.0)

path で指定したパス名を用いて接続を受け付けるソケット を作成します。

path で指定したパス名を用いて接続を受け付けるソケット
を作成します。

ブロックを省略すると作成したサーバソケットを返します。

ブロックを渡した場合は、作成したソケットを引数としてそのブロックを呼びだし、
ブロック終了時にソケットを閉じます。この場合には
ブロックの評価値を返り値として返します。

@param path 接続を受け付けるパス名文字列

require 'socket'

serv = UNIXServer.new("/tmp/sock")
s = serv.accept
p s.read

UNIXServer.open(path) {|sock| ...} -> object (69325.0)

path で指定したパス名を用いて接続を受け付けるソケット を作成します。

path で指定したパス名を用いて接続を受け付けるソケット
を作成します。

ブロックを省略すると作成したサーバソケットを返します。

ブロックを渡した場合は、作成したソケットを引数としてそのブロックを呼びだし、
ブロック終了時にソケットを閉じます。この場合には
ブロックの評価値を返り値として返します。

@param path 接続を受け付けるパス名文字列

require 'socket'

serv = UNIXServer.new("/tmp/sock")
s = serv.accept
p s.read

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

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

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

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

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

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

@see Socket.open

絞り込み条件を変える

TCPSocket.open(host, serv, local_host=nil, local_service=nil) -> TCPSocket (54604.0)

TCPSocket.new のパラメータ host と local_host の名前解決に resolv ライブラリを使います。

TCPSocket.new のパラメータ host と local_host
の名前解決に resolv ライブラリを使います。

@param host ホスト名、またはインターネットアドレスを示す文字列を指定します。
@param service /etc/services (または NIS) に登録されているサービス名かポート番号を指定します。
@param local_host ホスト名、またはインターネットアドレスを示す文字列を指定します。
@param local_service /etc/services (または NIS) に登録さ...

Socket.new(domain, type, protocol=0) -> Socket (51532.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...

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

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

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

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

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

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

@see Socket.open

Socket::SOCK_SEQPACKET -> Integer (51187.0)

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

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

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

Socket::SOCK_STREAM -> Integer (51187.0)

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

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

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

絞り込み条件を変える

Socket::SOCK_RAW -> Integer (51169.0)

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

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

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

Socket::AF_LOCAL -> Integer (51163.0)

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

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

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

Socket::AF_UNIX -> Integer (51163.0)

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

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

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

Socket::PF_LOCAL -> Integer (51163.0)

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

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

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

Socket::PF_UNIX -> Integer (51163.0)

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

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

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

絞り込み条件を変える

Socket::SOCK_DGRAM -> Integer (51151.0)

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

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

@see socket(2), Socket.open

Socket::SOCK_RDM -> Integer (51151.0)

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

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

@see socket(2linux), Socket.open

Socket::AF_ISO -> Integer (51145.0)

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

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

Socket::AF_OSI -> Integer (51145.0)

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

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

Socket::PF_ISO -> Integer (51145.0)

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

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

絞り込み条件を変える

Socket::PF_OSI -> Integer (51145.0)

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

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

Socket::AF_APPLETALK -> Integer (51133.0)

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

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

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

Socket::AF_INET -> Integer (51133.0)

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

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

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

Socket::AF_INET6 -> Integer (51133.0)

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

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

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

Socket::PF_APPLETALK -> Integer (51133.0)

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

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

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

絞り込み条件を変える

Socket::PF_INET -> Integer (51133.0)

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

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

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

Socket::PF_INET6 -> Integer (51133.0)

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

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

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

Socket::SOCK_PACKET -> Integer (51133.0)

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

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

@see packet(7linux), Socket.open

Socket::AF_ATM -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::AF_AX25 -> Integer (51115.0)

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

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

@see socket(2linux)

絞り込み条件を変える

Socket::AF_IPX -> Integer (51115.0)

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

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

@see socket(3linux)

Socket::AF_NETGRAPH -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::AF_PACKET -> Integer (51115.0)

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

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

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

Socket::AF_PUP -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::PF_ATM -> Integer (51115.0)

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

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

@see socket(2freebsd)

絞り込み条件を変える

Socket::PF_AX25 -> Integer (51115.0)

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

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

@see socket(2linux)

Socket::PF_IPX -> Integer (51115.0)

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

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

@see socket(3linux)

Socket::PF_KEY -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::PF_NETGRAPH -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::PF_PACKET -> Integer (51115.0)

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

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

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

絞り込み条件を変える

Socket::PF_PIP -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::PF_PUP -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::PF_RTIP -> Integer (51115.0)

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

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

@see socket(2freebsd)

Socket::AF_CCITT -> Integer (51097.0)

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

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

Socket::AF_CHAOS -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::AF_CNT -> Integer (51097.0)

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

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

Socket::AF_COIP -> Integer (51097.0)

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

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

Socket::AF_DATAKIT -> Integer (51097.0)

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

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

Socket::AF_DEC -> Integer (51097.0)

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

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

Socket::AF_DLI -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::AF_E164 -> Integer (51097.0)

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

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

Socket::AF_ECMA -> Integer (51097.0)

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

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

Socket::AF_HYLINK -> Integer (51097.0)

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

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

Socket::AF_IMPLINK -> Integer (51097.0)

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

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

Socket::AF_ISDN -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::AF_LAT -> Integer (51097.0)

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

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

Socket::AF_LINK -> Integer (51097.0)

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

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

Socket::AF_NATM -> Integer (51097.0)

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

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

Socket::AF_NDRV -> Integer (51097.0)

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

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

Socket::AF_NETBIOS -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::AF_NS -> Integer (51097.0)

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

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

Socket::AF_PPP -> Integer (51097.0)

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

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

Socket::AF_ROUTE -> Integer (51097.0)

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

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

@todo

Socket::AF_SIP -> Integer (51097.0)

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

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

Socket::AF_SNA -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::PF_CCITT -> Integer (51097.0)

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

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

Socket::PF_CHAOS -> Integer (51097.0)

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

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

Socket::PF_CNT -> Integer (51097.0)

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

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

Socket::PF_COIP -> Integer (51097.0)

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

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

Socket::PF_DATAKIT -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::PF_DEC -> Integer (51097.0)

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

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

Socket::PF_DLI -> Integer (51097.0)

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

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

Socket::PF_ECMA -> Integer (51097.0)

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

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

Socket::PF_HYLINK -> Integer (51097.0)

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

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

Socket::PF_IMPLINK -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::PF_ISDN -> Integer (51097.0)

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

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

Socket::PF_LAT -> Integer (51097.0)

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

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

Socket::PF_LINK -> Integer (51097.0)

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

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

Socket::PF_NATM -> Integer (51097.0)

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

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

Socket::PF_NDRV -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::PF_NETBIOS -> Integer (51097.0)

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

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

Socket::PF_NS -> Integer (51097.0)

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

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

Socket::PF_PPP -> Integer (51097.0)

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

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

Socket::PF_ROUTE -> Integer (51097.0)

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

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

@todo

Socket::PF_SIP -> Integer (51097.0)

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

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

絞り込み条件を変える

Socket::PF_SNA -> Integer (51097.0)

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

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

Socket::AF_UNSPEC -> Integer (51055.0)

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

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

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

Socket::PF_UNSPEC -> Integer (51055.0)

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

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

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

Socket::IFF_OVS_DATAPATH (51049.0)

device used as Open vSwitch datapath port

device used as Open vSwitch datapath port

Socket::AF_SYSTEM -> Integer (51037.0)

@todo

@todo

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

絞り込み条件を変える

Socket::IPPROTO_AH -> Integer (51037.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 (51037.0)

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

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

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

Socket::IPPROTO_DSTOPTS -> Integer (51037.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 (51037.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 (51037.0)

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

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

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

絞り込み条件を変える

<< 1 2 3 ... > >>