diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1997-07-01 22:12:54 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1997-07-01 22:12:54 +0000 |
commit | 170afa951af5e94eeb4a824da6b926603c094be2 (patch) | |
tree | b872ba634c7124715b485e7217b675eb6ffb4455 /sys/netinet/ip_ip4.h | |
parent | 4baf2e1d61b5570ff1ad12415e822ea0a3d4f9f2 (diff) |
major restructuring
Diffstat (limited to 'sys/netinet/ip_ip4.h')
-rw-r--r-- | sys/netinet/ip_ip4.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/sys/netinet/ip_ip4.h b/sys/netinet/ip_ip4.h index d489d3c1dc3..fd9d3d40070 100644 --- a/sys/netinet/ip_ip4.h +++ b/sys/netinet/ip_ip4.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ip4.h,v 1.6 1997/06/25 07:53:27 provos Exp $ */ +/* $OpenBSD: ip_ip4.h,v 1.7 1997/07/01 22:12:50 provos Exp $ */ /* * The author of this code is John Ioannidis, ji@tla.org, @@ -28,16 +28,6 @@ * Not quite all the functionality of RFC-1853, but the main idea is there. */ -struct ip4_xdata -{ - int32_t ip4_ttl; -}; - -struct ip4_xencap -{ - int32_t ip4_ttl; -}; - struct ip4stat { u_int32_t ip4s_ipackets; /* total input packets */ @@ -48,8 +38,8 @@ struct ip4stat u_int32_t ip4s_qfull; }; -#define IP4_SAME_TTL 0 -#define IP4_DEFAULT_TTL -1 +#define IP4_DEFAULT_TTL 0 +#define IP4_SAME_TTL -1 #ifdef _KERNEL struct ip4stat ip4stat; |