Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/share/man/man4 Sync struct sockaddr_in with reality.
details: https://anonhg.NetBSD.org/src/rev/8bb7fb162f00
branches: trunk
changeset: 493886:8bb7fb162f00
user: kleink <kleink%NetBSD.org@localhost>
date: Mon Jun 26 16:11:37 2000 +0000
description:
Sync struct sockaddr_in with reality.
diffstat:
share/man/man4/inet.4 | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (24 lines):
diff -r de0942f20268 -r 8bb7fb162f00 share/man/man4/inet.4
--- a/share/man/man4/inet.4 Mon Jun 26 15:59:20 2000 +0000
+++ b/share/man/man4/inet.4 Mon Jun 26 16:11:37 2000 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: inet.4,v 1.5 1999/03/16 01:19:16 garbled Exp $
+.\" $NetBSD: inet.4,v 1.6 2000/06/26 16:11:37 kleink Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -71,10 +71,10 @@
the following addressing structure,
.Bd -literal -offset indent
struct sockaddr_in {
- short sin_family;
- u_short sin_port;
- struct in_addr sin_addr;
- char sin_zero[8];
+ sa_family_t sin_family;
+ u_int16_t sin_port;
+ struct in_addr sin_addr;
+ int8_t sin_zero[8];
};
.Ed
.Pp
Home |
Main Index |
Thread Index |
Old Index