Sync types with headers.

This commit is contained in:
Ruslan Ermilov 2003-03-23 08:23:43 +00:00
parent 919b002617
commit 75eb8a4350

View File

@ -70,11 +70,11 @@ Sockets bound to the Internet protocol family utilize
the following addressing structure,
.Bd -literal -offset indent
struct sockaddr_in {
u_char sin_len;
u_char sin_family;
u_short sin_port;
struct in_addr sin_addr;
char sin_zero[8];
uint8_t sin_len;
sa_family_t sin_family;
in_port_t sin_port;
struct in_addr sin_addr;
char sin_zero[8];
};
.Ed
.Pp