Rev 4559 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4559 | Rev 4704 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | /** @addtogroup net |
29 | /** @addtogroup net |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | 32 | ||
33 | /** @file |
33 | /** @file |
34 | * |
34 | * INET6 family common definitions. |
35 | */ |
35 | */ |
36 | 36 | ||
37 | #ifndef __NET_IN6_H__ |
37 | #ifndef __NET_IN6_H__ |
38 | #define __NET_IN6_H__ |
38 | #define __NET_IN6_H__ |
39 | 39 | ||
40 | #include <sys/types.h> |
40 | #include <sys/types.h> |
41 | 41 | ||
42 | #include "ip_protocols.h" |
42 | #include "ip_protocols.h" |
43 | #include "inet.h" |
43 | #include "inet.h" |
44 | 44 | ||
- | 45 | /** INET6 string address maximum length. |
|
- | 46 | */ |
|
45 | #define INET6_ADDRSTRLEN ( 8 * 4 + 7 + 1 ) |
47 | #define INET6_ADDRSTRLEN ( 8 * 4 + 7 + 1 ) |
46 | 48 | ||
- | 49 | /** Type definition of the INET6 address. |
|
- | 50 | * @see in6_addr |
|
- | 51 | */ |
|
47 | typedef struct in6_addr in6_addr_t; |
52 | typedef struct in6_addr in6_addr_t; |
- | 53 | ||
- | 54 | /** Type definition of the INET6 socket address. |
|
- | 55 | * @see sockaddr_in6 |
|
- | 56 | */ |
|
48 | typedef struct sockaddr_in6 sockaddr_in6_t; |
57 | typedef struct sockaddr_in6 sockaddr_in6_t; |
49 | 58 | ||
- | 59 | /** INET6 address. |
|
- | 60 | */ |
|
50 | struct in6_addr{ |
61 | struct in6_addr{ |
- | 62 | /** 16 byte IPv6 address. |
|
- | 63 | */ |
|
51 | unsigned char s6_addr[ 16 ]; // IPv6 address |
64 | unsigned char s6_addr[ 16 ]; |
52 | }; |
65 | }; |
53 | 66 | ||
- | 67 | /** INET6 socket address. |
|
- | 68 | * @see sockaddr |
|
- | 69 | */ |
|
54 | struct sockaddr_in6{ |
70 | struct sockaddr_in6{ |
- | 71 | /** Address family. |
|
- | 72 | * Should be AF_INET6. |
|
- | 73 | */ |
|
55 | uint16_t sin6_family; // address family, AF_INET6 |
74 | uint16_t sin6_family; |
- | 75 | /** Port number. |
|
- | 76 | */ |
|
56 | uint16_t sin6_port; // port number, Network Byte Order |
77 | uint16_t sin6_port; |
- | 78 | /** IPv6 flow information. |
|
- | 79 | */ |
|
57 | uint32_t sin6_flowinfo; // IPv6 flow information |
80 | uint32_t sin6_flowinfo; |
- | 81 | /** IPv6 address. |
|
- | 82 | */ |
|
58 | struct in6_addr sin6_addr; // IPv6 address |
83 | struct in6_addr sin6_addr; |
- | 84 | /** Scope identifier. |
|
- | 85 | */ |
|
59 | uint32_t sin6_scope_id; // Scope ID |
86 | uint32_t sin6_scope_id; |
60 | }; |
87 | }; |
61 | 88 | ||
62 | #endif |
89 | #endif |
63 | 90 | ||
64 | /** @} |
91 | /** @} |