manページ検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 150 for SOCKET (0.021 sec.)
Man page of GETSOCKOPT 7493
GETSOCKOPT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 ge ... < sys/types.h > /* 「注意」参照 */ #include < sys/socket.h > int getsockopt(int sockfd , int level , int op ... t () と setsockopt () は、ファイルディスクリプター socket で参照されるソケットに関連するオプションの操作を行 ... API 層でオプションを操作する為には、 level を SOL_SOCKET に指定する。 他の全ての層でオプションを操作する為に ... ルに 渡されて解釈される。インクルードファイル < sys/socket.h > には後述のソケット層のオプションの定義が含まれ ...
https://man.plustar.jp/manpage/man2/getsockopt.2.html - [similar]
Man page of GETSOCKOPT 7493
GETSOCKOPT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 ge ... < sys/types.h > /* 「注意」参照 */ #include < sys/socket.h > int getsockopt(int sockfd , int level , int op ... t () と setsockopt () は、ファイルディスクリプター socket で参照されるソケットに関連するオプションの操作を行 ... API 層でオプションを操作する為には、 level を SOL_SOCKET に指定する。 他の全ての層でオプションを操作する為に ... ルに 渡されて解釈される。インクルードファイル < sys/socket.h > には後述のソケット層のオプションの定義が含まれ ...
https://man.plustar.jp/manpage/man2/setsockopt.2.html - [similar]
Man page of XINETD.CONF 7329
XINETD.CONF Section: File Formats (5) Updated: 14 June 2001 Index JM Home Page 名前 xinetd.conf ... etd はみなす。 あと一つ覚えておくべき重要なことは、socket_type を stream に設定した場合は、 wait 属性は no に ... 動されなくなる。 DISABLE フラグに関する記述を見よ。 socket_type この属性に指定可能な値は以下: stream ストリー ... をすべて指定する必要はない。 必要な属性は以下の通り: socket_type user (非 内部 サービスのみ) server (非 内部 サ ... には UNLISTED も指定する。 これらのサービスに対する socket_type は stream でなければならず、また protocal は ...
https://man.plustar.jp/manpage/man5/xinetd.conf.5.html - [similar]
Man page of DDP 7271
DDP Section: Linux Programmer's Manual (7) Updated: 2017-09-15 Index JM Home Page 名前 ddp - Lin ... での AppleTalk プロトコルの実装 書式 #include < sys/socket.h > #include < netatalk/at.h > ddp_socket = socket ... (AF_APPLETALK, SOCK_DGRAM, 0); raw_socket = socket(AF_APPLETALK, SOCK_RAW, protocol ); 説明 ... ェースを利用する。 ソケットに関するより詳しい情報は socket (7) を見よ。 AppleTalk ソケットは、 ソケットファミ ... リーの引数に AF_APPLETALK を指定して socket (2) 関数を呼び出すことによって生成される。指定でき ...
https://man.plustar.jp/manpage/man7/ddp.7.html - [similar]
Man page of RECVMMSG 7166
RECVMMSG Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 recv ... /* feature_test_macros (7) 参照 */ #include < sys/socket.h > int recvmmsg(int sockfd , struct mmsghdr * msg ... の大きさは vlen で指定する。 mmsghdr 構造体は < sys/socket.h > で次のように定義されている。 struct mmsghdr { ... in the meantime by an unrelated network event on a socket, for example an incoming ICMP packet. 例 以下のプロ ... < stdlib.h > #include < string.h > #include < sys/socket.h > int main(void) { #define VLEN 10 #define BUFSI ...
https://man.plustar.jp/manpage/man2/recvmmsg.2.html - [similar]
Man page of SENDMMSG 7166
SENDMMSG Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 send ... /* feature_test_macros (7) 参照 */ #include < sys/socket.h > int sendmmsg(int sockfd , struct mmsghdr * msg ... の大きさは vlen で指定する。 mmsghdr 構造体は < sys/socket.h > で次のように定義されている。 struct mmsghdr { ... string.h > #include < sys/types.h > #include < sys/socket.h > int main(void) { int sockfd; struct sockaddr_i ... ; struct iovec msg1[2], msg2; int retval; sockfd = socket(AF_INET, SOCK_DGRAM, 0); if (sockfd == -1) { perro ...
https://man.plustar.jp/manpage/man2/sendmmsg.2.html - [similar]
Man page of RAW 7014
RAW Section: Linux Programmer's Manual (7) Updated: 2020-08-13 Index JM Home Page 名前 raw - Lin ... ux の IPv4 raw ソケット 書式 #include < sys/socket.h > #include < netinet/in.h > raw_socket = socket( ... にパケットに含まれている。 In order to create a raw socket, a process must have the CAP_NET_RAW capability in ... matching the protocol number specified for the raw socket are passed to this socket. For a list of the allow ... rams ( sendto (2), recvfrom (2), and similar), raw sockets use the standard sockaddr_in address structure de ...
https://man.plustar.jp/manpage/man7/raw.7.html - [similar]
Man page of LISTEN 6955
LISTEN Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 listen ... - ソケット(socket)上の接続を待つ 書式 #include < sys/types.h > /* 「 ... 注意」参照 */ #include < sys/socket.h > int listen(int sockfd , int backlog ); 説明 li ... ckfd が参照するソケットを接続待ちソケット (passive socket) として印をつける。 接続待ちソケットとは、 accept ... 接続を受け付けるには、以下の処理が実行される。 1. socket (2) でソケットを作成する。 2. bind (2) を使ってソケ ...
https://man.plustar.jp/manpage/man2/listen.2.html - [similar]
Man page of SOCKETPAIR 6955
SOCKETPAIR Section: Linux Programmer's Manual (2) Updated: 2020-06-09 Index JM Home Page 名前 socket ... < sys/types.h > /* 「注意」参照 */ #include < sys/socket.h > int socketpair(int domain , int type , int pro ... tocol , int sv [2]); 説明 socketpair () は、指定されたドメイン domain に指定された種 ... ると、このプロトコルを用いる。 これらの引数の詳細は socket (2) を参照のこと。 The file descriptors used in re ... ferencing the new sockets are returned in sv[0] and sv[1] . The two sockets ...
https://man.plustar.jp/manpage/man2/socketpair.2.html - [similar]
Man page of GETADDRINFO 6955
GETADDRINFO Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 g ... 換する 書式 #include < sys/types.h > #include < sys/socket.h > #include < netdb.h > int getaddrinfo(const cha ... ト生成パラメーターを返す (これらのフィールドの意味は socket (2) の同じ名前の引数と同じである)。 例えば、 ai_fa ... < unistd.h > #include < string.h > #include < sys/socket.h > #include < netdb.h > #define BUF_SIZE 500 int ... Pv6 */ hints.ai_socktype = SOCK_DGRAM; /* Datagram socket */ hints.ai_flags = AI_PASSIVE; /* For wildcard IP ...
https://man.plustar.jp/manpage/man3/freeaddrinfo.3.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT

This document was created by man2html, using the manual pages.
Time: 13:30:26 GMT, January 09, 2022