socket.h 239 B

123456789101112131415
  1. struct msghdr {
  2. void *msg_name;
  3. socklen_t msg_namelen;
  4. struct iovec *msg_iov;
  5. int msg_iovlen;
  6. void *msg_control;
  7. socklen_t msg_controllen;
  8. int msg_flags;
  9. };
  10. struct cmsghdr {
  11. socklen_t cmsg_len;
  12. int cmsg_level;
  13. int cmsg_type;
  14. };