]> The Tcpdump Group git mirrors - tcpdump/blobdiff - route6d.h
s/u_short/u_int16_t/ for KAME-origin source codes
[tcpdump] / route6d.h
index 2289deed324ebc3ee77b469c9a81121f19f33842..8aefc4c16cc8ca7a6dc9e7e6d332d275e09dd882 100644 (file)
--- a/route6d.h
+++ b/route6d.h
@@ -1,5 +1,5 @@
 /*
- * $Header: /tcpdump/master/tcpdump/route6d.h,v 1.1 1999-10-30 05:11:22 itojun Exp $
+ * $Header: /tcpdump/master/tcpdump/route6d.h,v 1.2 2000-04-28 11:14:49 itojun Exp $
  */
 
 #define        RIP6_VERSION    1
@@ -8,16 +8,16 @@
 #define        RIP6_RESPONSE   2
 
 struct netinfo6 {
-       struct  in6_addr        rip6_dest;
-       u_short rip6_tag;
-       u_char  rip6_plen;
-       u_char  rip6_metric;
+       struct in6_addr rip6_dest;
+       u_int16_t       rip6_tag;
+       u_int8_t        rip6_plen;
+       u_int8_t        rip6_metric;
 };
 
 struct rip6 {
-       u_char  rip6_cmd;
-       u_char  rip6_vers;
-       u_char  rip6_res1[2];
+       u_int8_t        rip6_cmd;
+       u_int8_t        rip6_vers;
+       u_int8_t        rip6_res1[2];
        union {
                struct  netinfo6        ru6_nets[1];
                char    ru6_tracefile[1];