Changeset 71b00dcc in mainline for uspace/srv/net/include/in6.h
- Timestamp:
- 2010-03-07T22:51:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ab6c3
- Parents:
- b5cbff4 (diff), 31c80a5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/include/in6.h
rb5cbff4 r71b00dcc 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.