manページ検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 150 for SOCKET (0.007 sec.)
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/gai_strerror.3.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/getaddrinfo.3.html - [similar]
Man page of NETLINK 6955
NETLINK Section: Linux Programmer's Manual (7) Updated: 2020-06-09 Index JM Home Page 名前 netli ... LINK) 書式 #include < asm/types.h > #include < sys/socket.h > #include < linux/netlink.h > netlink_socket = ... socket(AF_NETLINK, socket_type , netlink_family ); 説明 netlink はカーネルモ ... いる。 netlink はデータグラム指向のサービスである。 socket_type には SOCK_RAW と SOCK_DGRAM の両方とも指定可能 ... SOCK_DIAG (Linux 3.3 以降) Query information about sockets of various protocol families from the kernel (see ...
https://man.plustar.jp/manpage/man7/netlink.7.html - [similar]
Man page of RTNETLINK 6850
RTNETLINK Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 rtn ... .h > #include < linux/rtnetlink.h > #include < sys/socket.h > rtnetlink_socket = socket(AF_NETLINK, int sock ... *rta; unsigned int mtu = 1000; int rtnetlink_sk = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE); memset(&re ...
https://man.plustar.jp/manpage/man3/rtnetlink.3.html - [similar]
Man page of IPV6 6850
IPV6 Section: Linux Programmer's Manual (7) Updated: 2020-12-21 Index JM Home Page 名前 ipv6 - L ... inux IPv6 プロトコルの実装 書式 #include < sys/socket.h > #include < netinet/in.h > tcp6_socket = socket ... (AF_INET6, SOCK_STREAM, 0); raw6_socket = socket(AF_INET6, SOCK_RAW, protocol ); udp6_sock ... et = socket(AF_INET6, SOCK_DGRAM, protocol ); 説明 Linux 2.2 で ... スは BSD ソケットインターフェースをもとにしている。 socket (7) を参照。 IPv6 API は、 IPv4 API ( ip (7) 参照) ...
https://man.plustar.jp/manpage/man7/ipv6.7.html - [similar]
Man page of SELECT_TUT 6792
SELECT_TUT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 se ... < string.h > #include < signal.h > #include < sys/socket.h > #include < netinet/in.h > #include < arpa/inet ... max(x,y) ((x) > (y) ? (x) : (y)) static int listen_socket(int listen_port) { struct sockaddr_in addr; int lf ... d; int yes; lfd = socket(AF_INET, SOCK_STREAM, 0); if (lfd == -1) { perror( ... "socket"); return -1; } yes = 1; if (setsockopt(lfd, SOL_S ...
https://man.plustar.jp/manpage/man2/select_tut.2.html - [similar]
Man page of SHUTDOWN 6792
SHUTDOWN Section: Linux Programmer's Manual (2) Updated: 2018-04-30 Index JM Home Page 名前 shut ... own - 全二重接続の一部を閉じる 書式 #include < sys/socket.h > int shutdown(int sockfd , int how ); 説明 shut ... れ 0, 1, 2 の値を持つ) は glibc-2.1.91 以降、 < sys/socket.h > で定義されている。 バグ Checks for the validit ... performed these checks. Most notably, UNIX domain sockets simply ignored invalid values. This problem was f ... ixed for UNIX domain sockets in Linux 3.7. 関連項目 close (2), connect (2), so ...
https://man.plustar.jp/manpage/man2/shutdown.2.html - [similar]
Man page of SOCKETCALL 6640
SOCKETCALL Section: Linux Programmer's Manual (2) Updated: 2017-09-15 Index JM Home Page 名前 socket ... ットシステムコール 書式 #include < linux/net.h > int socketcall(int call , unsigned long * args ); 説明 socket ... る。 標準ライブラリの実装者やカーネルハッカーのみが socketcall () について知る必要がある。 call マニュアル SY ... S_SOCKET socket (2) SYS_BIND bind (2) SYS_CONNECT connect ( ... etsockname (2) SYS_GETPEERNAME getpeername (2) SYS_SOCKETPAIR socketpair (2) SYS_SEND send (2) SYS_RECV recv ...
https://man.plustar.jp/manpage/man2/socketcall.2.html - [similar]
Man page of X25 6535
X25 Section: Linux Programmer's Manual (7) Updated: 2017-09-15 Index JM Home Page 名前 x25 - ITU ... 208 プロトコルインターフェース 書式 #include < sys/socket.h > #include < linux/x25.h > x25_socket = socket(A ... トが起こると、データは通知無しに失われる。 関連項目 socket (2), socket (7) Jonathan Simon Naylor: "The Re-Ana ...
https://man.plustar.jp/manpage/man7/x25.7.html - [similar]
Man page of SEND 6418
SEND Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 send, se ... を送る 書式 #include < sys/types.h > #include < sys/socket.h > ssize_t send(int sockfd , const void * buf , s ... a SIGPIPE signal if the peer on a stream-oriented socket has closed the connection. The EPIPE error is stil ... uffer length the kernel can process is limited per socket by the value in /proc/sys/net/core/optmem_max ; se ... e socket (7). For further information on the use of ancilla ...
https://man.plustar.jp/manpage/man2/send.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT

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