route.h (bd0561c9d8dcbf21cd9aa46c416bbf6a3a12e4b1) route.h (093c2ca4167cf66f69020329d14138da0da8599b)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Definitions for the IP router.
7 *
8 * Version: @(#)route.h 1.0.4 05/27/93

--- 39 unchanged lines hidden (view full) ---

48
49struct fib_nh;
50struct inet_peer;
51struct rtable
52{
53 union
54 {
55 struct dst_entry dst;
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Definitions for the IP router.
7 *
8 * Version: @(#)route.h 1.0.4 05/27/93

--- 39 unchanged lines hidden (view full) ---

48
49struct fib_nh;
50struct inet_peer;
51struct rtable
52{
53 union
54 {
55 struct dst_entry dst;
56 struct rtable *rt_next;
57 } u;
58
56 } u;
57
58 /* Cache lookup keys */
59 struct flowi fl;
60
59 struct in_device *idev;
60
61 unsigned rt_flags;
62 __u16 rt_type;
63 __u16 rt_multipath_alg;
64
65 __be32 rt_dst; /* Path destination */
66 __be32 rt_src; /* Path source */
67 int rt_iif;
68
69 /* Info on neighbour */
70 __be32 rt_gateway;
71
61 struct in_device *idev;
62
63 unsigned rt_flags;
64 __u16 rt_type;
65 __u16 rt_multipath_alg;
66
67 __be32 rt_dst; /* Path destination */
68 __be32 rt_src; /* Path source */
69 int rt_iif;
70
71 /* Info on neighbour */
72 __be32 rt_gateway;
73
72 /* Cache lookup keys */
73 struct flowi fl;
74
75 /* Miscellaneous cached information */
76 __be32 rt_spec_dst; /* RFC1122 specific destination */
77 struct inet_peer *peer; /* long-living peer info */
78};
79
80struct ip_rt_acct
81{
82 __u32 o_bytes;

--- 125 unchanged lines hidden ---
74 /* Miscellaneous cached information */
75 __be32 rt_spec_dst; /* RFC1122 specific destination */
76 struct inet_peer *peer; /* long-living peer info */
77};
78
79struct ip_rt_acct
80{
81 __u32 o_bytes;

--- 125 unchanged lines hidden ---