.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
---|
3 | 4 | * operating system. INET is implemented using the BSD Socket |
---|
.. | .. |
---|
6 | 7 | * Definitions for a generic INET TIMEWAIT sock |
---|
7 | 8 | * |
---|
8 | 9 | * From code originally in net/tcp.h |
---|
9 | | - * |
---|
10 | | - * This program is free software; you can redistribute it and/or |
---|
11 | | - * modify it under the terms of the GNU General Public License |
---|
12 | | - * as published by the Free Software Foundation; either version |
---|
13 | | - * 2 of the License, or (at your option) any later version. |
---|
14 | 10 | */ |
---|
15 | 11 | #ifndef _INET_TIMEWAIT_SOCK_ |
---|
16 | 12 | #define _INET_TIMEWAIT_SOCK_ |
---|
.. | .. |
---|
74 | 70 | tw_flowlabel : 20, |
---|
75 | 71 | tw_pad : 2, /* 2 bits hole */ |
---|
76 | 72 | tw_tos : 8; |
---|
| 73 | + u32 tw_txhash; |
---|
| 74 | + u32 tw_priority; |
---|
77 | 75 | struct timer_list tw_timer; |
---|
78 | 76 | struct inet_bind_bucket *tw_tb; |
---|
79 | 77 | }; |
---|