socket.h 239 B

1234567891011121314151617
  1. struct 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. struct cmsghdr
  12. {
  13. socklen_t cmsg_len;
  14. int cmsg_level;
  15. int cmsg_type;
  16. };