るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1027件ヒット [201-300件を表示] (0.073秒)
トップページ > バージョン:2.2.0[x] > ライブラリ:socket[x]

モジュール

キーワード

検索結果

<< < 1 2 3 4 5 ... > >>

Socket::AncillaryData.int(family, cmsg_level, cmsg_type, integer) -> Socket::AncillaryData (7.0)

データとして整数を保持する Socket::AncillaryData オブジェクトを生成します。

...持する
Socket
::AncillaryData オブジェクトを生成します。

整数データのサイズおよびエンディアンは実行するホストによって異なります。

require 'socket'

p Socket::AncillaryData.int(:UNIX, :SOCKET, :RIGHTS, STDERR.fileno)
#=> #<Socket::AncillaryDa...
...ta: UNIX SOCKET RIGHTS 2>

@param family ソケットファミリー
@param cmsg_level プロトコル
@param cmsg_type 補助データの種類
@param integer データ内容

@see Socket::AncillaryData.new...

Socket::AncillaryData.ip_pktinfo(addr, ifindex, spec_dst=addr) -> Socket::AncillaryData (7.0)

type が IP_PKTINFO である AncillaryData を生成します。

...によっては使えない場合があります。

require 'socket'

addr = Addrinfo.ip("127.0.0.1")
ifindex = 0
spec_dst = Addrinfo.ip("127.0.0.1")
p Socket::AncillaryData.ip_pktinfo(addr, ifindex, spec_dst)
#=> #<Socket::AncillaryData: INET IP PKTINFO 127.0.0.1 ifindex:0 spec_dst:127...
....0.0.1>

@param addr アドレス(文字列もしくは Addrinfo)
@param ifindex インターフェースのインデックス(整数)
@param spec_dst パケットのローカルアドレス(文字列もしくは Addrinfo)

@see Socket::AncillaryData#ip_pktinfo,
Socket
::Constants::IP_PKTINFO...

Socket::AncillaryData.ipv6_pktinfo(addr, ifindex) -> Socket::AncillaryData (7.0)

type が IPV6_PKTINFO である AncillaryData を生成します。

...ta を生成します。

IPV6_PKTINFO は 3542 で定義されています。

require 'socket'

addr = Addrinfo.ip("::1")
ifindex = 0
p Socket::AncillaryData.ipv6_pktinfo(addr, ifindex)
#=> #<Socket::AncillaryData: INET6 IPV6 PKTINFO ::1 ifindex:0>

@param addr アドレス(文字列も...
...しくは Addrinfo)
@param ifindex インターフェースのインデックス(整数)

@see Socket::AncillaryData#ipv6_pktinfo,
Socket
::Constants::IPV6_PKTINFO...

Socket::AncillaryData.new(family, cmsg_level, cmsg_type, cmsg_data) -> Socket::AncillaryData (7.0)

新たな Socket::AncillaryData オブジェクトを生成します。

...新たな Socket::AncillaryData オブジェクトを生成します。

family はソケットファミリーを指定します。
整数、文字列、シンボルを渡します。
* Socket::AF_INET, "AF_INET", "INET", :AF_INET, :INET
* Socket::AF_UNIX, "AF_UNIX", "UNIX", :AF_UNIX, :UNIX
*...
...定します。
整数、文字列、シンボルを渡します。
* Socket::SOL_SOCKET, "SOL_SOCKET", "SOCKET", :SOL_SOCKET and :SOCKET
* Socket::IPPROTO_IP, "IP" and :IP
* Socket::IPPROTO_IPV6, "IPV6" and :IPV6
* Socket::IPPROTO_TCP, "TCP" and :TCP
* など

cmsg_type は補助データの...
...異なります。
整数、文字列、シンボルを渡します。
* Socket::SCM_RIGHTS, "SCM_RIGHTS", "RIGHTS", :SCM_RIGHTS, :RIGHTS for SOL_SOCKET
* Socket::IP_RECVTTL, "RECVTTL" and :RECVTTL for IPPROTO_IP
* Socket::IPV6_PKTINFO, "PKTINFO" and :PKTINFO for IPPROTO_IPV6
* など

cmsg_data...

Socket::AncillaryData.unix_rights(*ios) -> Socket::AncillaryData (7.0)

ios で指定したファイルのファイルデスクリプタを データとして持つ family=AF_UNIX, level=SOL_SOCKET, type=SCM_RIGHTS という Socket::AncillaryData オブジェクトを生成して返します。

...level=SOL_SOCKET, type=SCM_RIGHTS
という Socket::AncillaryData オブジェクトを生成して返します。

require 'socket'

p Socket::AncillaryData.unix_rights(STDERR)
#=> #<Socket::AncillaryData: UNIX SOCKET RIGHTS 2>

@param ios IO オブジェクトの配列
@see Socket::Ancillar...
...yData#unix_rights,
Socket
::Constants::SCM_RIGHTS...

絞り込み条件を変える

Socket::Constants (7.0)

ソケット操作の指定のための定数を定義したモジュール。このモジュー ルをインクルードすれば、定数 (AF_INETなど) を直接参照できます。

...ジュール。このモジュー
ルをインクルードすれば、定数 (AF_INETなど) を直接参照できます。

これらの定数は Socket の定数としても定義されています。

環境/OS によっては、ここに記述されているにもかかわらず
定義されて...

Socket::Constants::AF_APPLETALK -> Integer (7.0)

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

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

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

Socket::Constants::AF_ATM -> Integer (7.0)

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

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

@see socket(2freebsd)...

Socket::Constants::AF_AX25 -> Integer (7.0)

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

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

@see socket(2linux)...

Socket::Constants::AF_CCITT -> Integer (7.0)

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

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

絞り込み条件を変える

Socket::Constants::AF_CHAOS -> Integer (7.0)

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

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

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

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

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

Socket::Constants::AF_COIP -> Integer (7.0)

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

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

Socket::Constants::AF_DATAKIT -> Integer (7.0)

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

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

Socket::Constants::AF_DEC -> Integer (7.0)

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

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

絞り込み条件を変える

Socket::Constants::AF_DLI -> Integer (7.0)

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

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

Socket::Constants::AF_E164 -> Integer (7.0)

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

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

Socket::Constants::AF_ECMA -> Integer (7.0)

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

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

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

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

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

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

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

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

絞り込み条件を変える

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

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

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

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

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

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

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

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

Socket::Constants::AF_IPX -> Integer (7.0)

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

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

@see socket(3linux)...

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

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

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

Socket::Constants::AF_ISO -> Integer (7.0)

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

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

絞り込み条件を変える

Socket::Constants::AF_LAT -> Integer (7.0)

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

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

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

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

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

Socket::Constants::AF_LOCAL -> Integer (7.0)

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

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

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

Socket::Constants::AF_MAX -> Integer (7.0)

対象のプラットフォーム上でのアドレスファミリーの最大の数値。

...対象のプラットフォーム上でのアドレスファミリーの最大の数値。

@see Socket::Constants::PF_MAX...

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

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

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

絞り込み条件を変える

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

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

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

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

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

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

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

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

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

@see socket(2freebsd)...

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

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

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

Socket::Constants::AF_OSI -> Integer (7.0)

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

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

絞り込み条件を変える

Socket::Constants::AF_PACKET -> Integer (7.0)

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

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

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

Socket::Constants::AF_PPP -> Integer (7.0)

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

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

Socket::Constants::AF_PUP -> Integer (7.0)

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

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

@see socket(2freebsd)...

Socket::Constants::AF_ROUTE -> Integer (7.0)

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

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

@todo...

Socket::Constants::AF_SIP -> Integer (7.0)

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

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

絞り込み条件を変える

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

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

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

Socket::Constants::AF_SYSTEM -> Integer (7.0)

@todo

...@todo

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

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

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

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

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

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

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

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

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

Socket::Constants::AI_ADDRCONFIG -> Integer (7.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_ALL -> Integer (7.0)

Allow all addresses。

...Allow all addresses。

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

@see getaddrinfo(3)...

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

Fill in the canonical name。

...Fill in the canonical name。

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

@see getaddrinfo(3)...

Socket::Constants::AI_DEFAULT -> Integer (7.0)

Default flags for getaddrinfo。

...Default flags for getaddrinfo。

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

@see getipnodebyname(3freebsd)...

Socket::Constants::AI_MASK -> Integer (7.0)

@todo

@todo

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

Prevent host name resolution。

...Prevent host name resolution。

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

@see getaddrinfo(3)...

絞り込み条件を変える

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

Prevent server name resolution。

...Prevent server name resolution。

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

@see getaddrinfo(3)...

Socket::Constants::AI_PASSIVE -> Integer (7.0)

Get address to use with bind。

...Get address to use with bind。

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

@see getaddrinfo(3)...

Socket::Constants::AI_V4MAPPED -> Integer (7.0)

Accept IPv4-mapped IPv6 addresses。

...Accept IPv4-mapped IPv6 addresses。

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

@see getaddrinfo(3)...

Socket::Constants::AI_V4MAPPED_CFG -> Integer (7.0)

Accept IPv4 mapped addresses if the kernel supports it。

...Accept IPv4 mapped addresses if the kernel supports it。

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

@see getipnodebyname(3freebsd)...

Socket::Constants::EAI_ADDRFAMILY -> Integer (7.0)

Address family for hostname not supported

...amily for hostname not supported

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

@see getaddrinfo(3linux), gai_strerro...

絞り込み条件を変える

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

Temporary failure in name resolution

...orary failure in name resolution

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

@see getaddrinfo(3linux), gai_strerro...

Socket::Constants::EAI_BADFLAGS -> Integer (7.0)

Invalid flags

...Invalid flags

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

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

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

Invalid value for hints

...Invalid value for hints

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

Socket::Constants::EAI_FAIL -> Integer (7.0)

Non-recoverable failure in name resolution

...rable failure in name resolution

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

@see getaddrinfo(3linux), gai_strerro...

Socket::Constants::EAI_FAMILY -> Integer (7.0)

Address family not supported

...Address family not supported

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

@see getaddrinfo(3linux), gai_strerror(3f...

絞り込み条件を変える

Socket::Constants::EAI_MAX -> Integer (7.0)

EAI_* 定数の最大値。

EAI_* 定数の最大値。

Socket::Constants::EAI_MEMORY -> Integer (7.0)

Memory allocation failure

...Memory allocation failure

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

@see getaddrinfo(3linux), gai_strerror(3free...

Socket::Constants::EAI_NODATA -> Integer (7.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 (7.0)

Hostname nor servname, or not known

...tname nor servname, or not known

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

@see getaddrinfo(3linux), gai_strerro...

Socket::Constants::EAI_OVERFLOW -> Integer (7.0)

Argument buffer overflow

...Argument buffer overflow

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

@see getaddrinfo(3linux), gai_strerror(3freeb...

絞り込み条件を変える

Socket::Constants::EAI_PROTOCOL -> Integer (7.0)

Resolved protocol is unknown

...Resolved protocol is unknown

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

@see getaddrinfo(3linux), gai_strerror(3f...

Socket::Constants::EAI_SERVICE -> Integer (7.0)

Servname not supported for socket type

...Servname not supported for socket type

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

@see getaddrinfo(3linux), gai_s...

Socket::Constants::EAI_SOCKTYPE -> Integer (7.0)

Socket type not supported

...Socket type not supported

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

@see getaddrinfo(3linux), gai_strerror(3free...

Socket::Constants::EAI_SYSTEM -> Integer (7.0)

System error returned in errno

...System error returned in errno

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

@see getaddrinfo(3linux), gai_strerro...

Socket::Constants::IFF_802_1Q_VLAN (7.0)

802.1Q VLAN device

802.1Q VLAN device

絞り込み条件を変える

Socket::Constants::IFF_ALLMULTI (7.0)

receive all multicast packets

receive all multicast packets

Socket::Constants::IFF_ALTPHYS (7.0)

use alternate physical connection

use alternate physical connection

Socket::Constants::IFF_AUTOMEDIA (7.0)

auto media select active

auto media select active

Socket::Constants::IFF_BONDING (7.0)

bonding master or slave

bonding master or slave

Socket::Constants::IFF_BRIDGE_PORT (7.0)

device used as bridge port

device used as bridge port

絞り込み条件を変える

Socket::Constants::IFF_BROADCAST (7.0)

broadcast address valid

broadcast address valid

Socket::Constants::IFF_CANTCHANGE (7.0)

flags not changeable

flags not changeable

Socket::Constants::IFF_CANTCONFIG (7.0)

unconfigurable using ioctl(2)

unconfigurable using ioctl(2)

Socket::Constants::IFF_DEBUG (7.0)

turn on debugging

turn on debugging

Socket::Constants::IFF_DISABLE_NETPOLL (7.0)

disable netpoll at run-time

disable netpoll at run-time

絞り込み条件を変える

Socket::Constants::IFF_DONT_BRIDGE (7.0)

disallow bridging this ether dev

disallow bridging this ether dev

Socket::Constants::IFF_DORMANT (7.0)

driver signals dormant

driver signals dormant

Socket::Constants::IFF_DRV_OACTIVE (7.0)

tx hardware queue is full

tx hardware queue is full

Socket::Constants::IFF_DRV_RUNNING (7.0)

resources allocated

resources allocated

Socket::Constants::IFF_DYING (7.0)

interface is winding down

interface is winding down

絞り込み条件を変える

Socket::Constants::IFF_DYNAMIC (7.0)

dialup device with changing addresses

dialup device with changing addresses

Socket::Constants::IFF_EBRIDGE (7.0)

ethernet bridging device

ethernet bridging device

Socket::Constants::IFF_ECHO (7.0)

echo sent packets

echo sent packets

Socket::Constants::IFF_ISATAP (7.0)

ISATAP interface (RFC4214)

ISATAP interface (RFC4214)

Socket::Constants::IFF_LINK0 (7.0)

per link layer defined bit 0

per link layer defined bit 0

絞り込み条件を変える

Socket::Constants::IFF_LINK1 (7.0)

per link layer defined bit 1

per link layer defined bit 1

Socket::Constants::IFF_LINK2 (7.0)

per link layer defined bit 2

per link layer defined bit 2

Socket::Constants::IFF_LIVE_ADDR_CHANGE (7.0)

hardware address change when it's running

hardware address change when it's running

Socket::Constants::IFF_LOOPBACK (7.0)

loopback net

loopback net

Socket::Constants::IFF_LOWER_UP (7.0)

driver signals L1 up

driver signals L1 up

絞り込み条件を変える

Socket::Constants::IFF_MACVLAN_PORT (7.0)

device used as macvlan port

device used as macvlan port

Socket::Constants::IFF_MASTER (7.0)

master of a load balancer

master of a load balancer

Socket::Constants::IFF_MASTER_8023AD (7.0)

bonding master, 802.3ad.

bonding master, 802.3ad.

Socket::Constants::IFF_MASTER_ALB (7.0)

bonding master, balance-alb.

bonding master, balance-alb.

Socket::Constants::IFF_MASTER_ARPMON (7.0)

bonding master, ARP mon in use

bonding master, ARP mon in use

絞り込み条件を変える

<< < 1 2 3 4 5 ... > >>