Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet6 s/u_char/u_int8_t/ for sin6_{family, len}
details: https://anonhg.NetBSD.org/src/rev/8fabc5466370
branches: trunk
changeset: 482695:8fabc5466370
user: itojun <itojun%NetBSD.org@localhost>
date: Sat Feb 19 17:32:07 2000 +0000
description:
s/u_char/u_int8_t/ for sin6_{family,len}
diffstat:
sys/netinet6/in6.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r c0f44aee6e2a -r 8fabc5466370 sys/netinet6/in6.h
--- a/sys/netinet6/in6.h Sat Feb 19 17:16:20 2000 +0000
+++ b/sys/netinet6/in6.h Sat Feb 19 17:32:07 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: in6.h,v 1.11 2000/02/17 10:59:39 darrenr Exp $ */
+/* $NetBSD: in6.h,v 1.12 2000/02/19 17:32:07 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -142,8 +142,8 @@
#define SIN6_LEN
#endif
struct sockaddr_in6 {
- u_char sin6_len; /* length of this struct(sa_family_t)*/
- u_char sin6_family; /* AF_INET6 (sa_family_t) */
+ u_int8_t sin6_len; /* length of this struct(sa_family_t)*/
+ u_int8_t sin6_family; /* AF_INET6 (sa_family_t) */
u_int16_t sin6_port; /* Transport layer port # (in_port_t)*/
u_int32_t sin6_flowinfo; /* IP6 flow information */
struct in6_addr sin6_addr; /* IP6 address */
Home |
Main Index |
Thread Index |
Old Index