diff options
| author | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-04 20:24:41 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-04 20:24:41 -0800 |
| commit | 96c4fbbe32bf8aaace615f5ad2469f5531dae781 (patch) | |
| tree | b3b3bd990d8a19c595f810b508a4262d1b9973db /include/net | |
| parent | 975675b97f86323933d8f15b83660a60255988f7 (diff) | |
v2.4.12.3 -> v2.4.12.4
- Al Viro: mnt_list init
- Jeff Garzik: network driver update (license tags, tulip driver)
- David Miller: sparc, net updates
- Ben Collins: firewire update
- Gerd Knorr: btaudio/bttv update
- Tim Hockin: MD cleanups
- Greg KH, Petko Manolov: USB updates
- Leonard Zubkoff: DAC960 driver update
Diffstat (limited to 'include/net')
| -rw-r--r-- | include/net/route.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/route.h b/include/net/route.h index 887237f6439c..f35af5807444 100644 --- a/include/net/route.h +++ b/include/net/route.h @@ -37,9 +37,12 @@ #endif #define RTO_ONLINK 0x01 -#define RTO_TPROXY 0x80000000 #define RTO_CONN 0 +/* RTO_CONN is not used (being alias for 0), but preserved not to break + * some modules referring to it. */ + +#define RT_CONN_FLAGS(sk) (RT_TOS(sk->protinfo.af_inet.tos) | sk->localroute) struct rt_key { |
