| 1 | #ifndef __wasilibc___struct_sockaddr_in6_h |
| 2 | #define __wasilibc___struct_sockaddr_in6_h |
| 3 | |
| 4 | #include <__typedef_sa_family_t.h> |
| 5 | #include <__typedef_in_port_t.h> |
| 6 | #include <__struct_in6_addr.h> |
| 7 | |
| 8 | struct sockaddr_in6 { |
| 9 | __attribute__((aligned(__BIGGEST_ALIGNMENT__))) sa_family_t sin6_family; |
| 10 | in_port_t sin6_port; |
| 11 | unsigned sin6_flowinfo; |
| 12 | struct in6_addr sin6_addr; |
| 13 | unsigned sin6_scope_id; |
| 14 | }; |
| 15 | |
| 16 | #endif |