Changes in uspace/srv/net/include/in6.h [21580dd:aadf01e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/include/in6.h
r21580dd raadf01e 45 45 /** INET6 string address maximum length. 46 46 */ 47 #define INET6_ADDRSTRLEN ( 8 * 4 + 7 + 1)47 #define INET6_ADDRSTRLEN (8 * 4 + 7 + 1) 48 48 49 49 /** Type definition of the INET6 address. … … 62 62 /** 16 byte IPv6 address. 63 63 */ 64 unsigned char s6_addr[ 16];64 unsigned char s6_addr[16]; 65 65 }; 66 66 … … 72 72 * Should be AF_INET6. 73 73 */ 74 uint16_t 74 uint16_t sin6_family; 75 75 /** Port number. 76 76 */ 77 uint16_t 77 uint16_t sin6_port; 78 78 /** IPv6 flow information. 79 79 */ 80 uint32_t 80 uint32_t sin6_flowinfo; 81 81 /** IPv6 address. 82 82 */ 83 struct in6_addr 83 struct in6_addr sin6_addr; 84 84 /** Scope identifier. 85 85 */ 86 uint32_t 86 uint32_t sin6_scope_id; 87 87 }; 88 88
Note:
See TracChangeset
for help on using the changeset viewer.