inetpeer.h (f0eef25339f92f7cd4aeea23d9ae97987a5a1e82) | inetpeer.h (d71209ded2ba6010070d02005384897c59859d00) |
---|---|
1/* 2 * INETPEER - A storage for permanent information about peers 3 * 4 * Version: $Id: inetpeer.h,v 1.2 2002/01/12 07:54:56 davem Exp $ 5 * 6 * Authors: Andrey V. Savochkin <saw@msu.ru> 7 */ 8 --- 8 unchanged lines hidden (view full) --- 17 18struct inet_peer 19{ 20 /* group together avl_left,avl_right,v4daddr to speedup lookups */ 21 struct inet_peer *avl_left, *avl_right; 22 __be32 v4daddr; /* peer's address */ 23 __u16 avl_height; 24 __u16 ip_id_count; /* IP ID for the next packet */ | 1/* 2 * INETPEER - A storage for permanent information about peers 3 * 4 * Version: $Id: inetpeer.h,v 1.2 2002/01/12 07:54:56 davem Exp $ 5 * 6 * Authors: Andrey V. Savochkin <saw@msu.ru> 7 */ 8 --- 8 unchanged lines hidden (view full) --- 17 18struct inet_peer 19{ 20 /* group together avl_left,avl_right,v4daddr to speedup lookups */ 21 struct inet_peer *avl_left, *avl_right; 22 __be32 v4daddr; /* peer's address */ 23 __u16 avl_height; 24 __u16 ip_id_count; /* IP ID for the next packet */ |
25 struct inet_peer *unused_next, **unused_prevp; | 25 struct list_head unused; |
26 __u32 dtime; /* the time of last use of not 27 * referenced entries */ 28 atomic_t refcnt; 29 atomic_t rid; /* Frag reception counter */ 30 __u32 tcp_ts; 31 unsigned long tcp_ts_stamp; 32}; 33 --- 22 unchanged lines hidden --- | 26 __u32 dtime; /* the time of last use of not 27 * referenced entries */ 28 atomic_t refcnt; 29 atomic_t rid; /* Frag reception counter */ 30 __u32 tcp_ts; 31 unsigned long tcp_ts_stamp; 32}; 33 --- 22 unchanged lines hidden --- |