diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-07-26 08:20:34 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-07-26 08:20:34 +0000 |
commit | 323e7f3d091fd2ea07963d6b46d0eac0c553f953 (patch) | |
tree | 34024d66fda64bf6f9fc5fd3589ab409d3c6cce1 /share/man/man4/inet6.4 | |
parent | 6655feec2c89f256c798dd301183368513dcb940 (diff) |
sync types with headers.
Notes
Notes:
svn path=/head/; revision=100707
Diffstat (limited to 'share/man/man4/inet6.4')
-rw-r--r-- | share/man/man4/inet6.4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man4/inet6.4 b/share/man/man4/inet6.4 index 7c15b55af3c4..5315adf74507 100644 --- a/share/man/man4/inet6.4 +++ b/share/man/man4/inet6.4 @@ -77,12 +77,12 @@ Sockets bound to the family utilize the following addressing structure: .Bd -literal -offset indent struct sockaddr_in6 { - u_int8_t sin6_len; - u_int8_t sin6_family; - u_int16_t sin6_port; - u_int32_t sin6_flowinfo; + uint8_t sin6_len; + sa_family_t sin6_family; + in_port_t sin6_port; + uint32_t sin6_flowinfo; struct in6_addr sin6_addr; - u_int32_t sin6_scope_id; + uint32_t sin6_scope_id; }; .Ed .Pp |