sock_internal.h 241 B

123456789101112131415
  1. #ifndef SOCK_INTERNAL_H_
  2. #define SOCK_INTERNAL_H_
  3. #include <sys/socket.h>
  4. /* Socket address structure. */
  5. struct sock_addr {
  6. int ai_family;
  7. int ai_socktype;
  8. struct sockaddr * name;
  9. socklen_t namelen;
  10. };
  11. #endif /* !SOCK_INTERNAL_H_ */