source: EcnlProtoTool/trunk/musl-1.1.12/include/bits/socket.h@ 321

Last change on this file since 321 was 321, checked in by coas-nagasima, 7 years ago

文字コードを設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 239 bytes
Line 
1struct msghdr
2{
3 void *msg_name;
4 socklen_t msg_namelen;
5 struct iovec *msg_iov;
6 int msg_iovlen;
7 void *msg_control;
8 socklen_t msg_controllen;
9 int msg_flags;
10};
11
12struct cmsghdr
13{
14 socklen_t cmsg_len;
15 int cmsg_level;
16 int cmsg_type;
17};
Note: See TracBrowser for help on using the repository browser.