diff options
author | Guillaume Nault <g.nault@alphalink.fr> | 2018-07-27 11:59:57 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-27 23:34:53 +0300 |
commit | 3ae5536b808dced0af5b2e6768a41862620c779d (patch) | |
tree | 122db2a2d3e5fa68e84035dfb3c63fdf00d2e58d /net/l2tp/l2tp_core.h | |
parent | 3e4e36436047155f67eafffe3062a09db1dff8df (diff) | |
download | linux-3ae5536b808dced0af5b2e6768a41862620c779d.tar.xz |
l2tp: ignore L2TP_ATTR_DATA_SEQ netlink attribute
The value of this attribute is never used.
Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/l2tp_core.h')
-rw-r--r-- | net/l2tp/l2tp_core.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/l2tp/l2tp_core.h b/net/l2tp/l2tp_core.h index d85fde793a8c..7dbfb55ab3b5 100644 --- a/net/l2tp/l2tp_core.h +++ b/net/l2tp/l2tp_core.h @@ -45,10 +45,6 @@ struct l2tp_tunnel; */ struct l2tp_session_cfg { enum l2tp_pwtype pw_type; - unsigned int data_seq:2; /* data sequencing level - * 0 => none, 1 => IP only, - * 2 => all - */ unsigned int recv_seq:1; /* expect receive packets with * sequence numbers? */ unsigned int send_seq:1; /* send packets with sequence @@ -99,10 +95,6 @@ struct l2tp_session { char name[32]; /* for logging */ char ifname[IFNAMSIZ]; - unsigned int data_seq:2; /* data sequencing level - * 0 => none, 1 => IP only, - * 2 => all - */ unsigned int recv_seq:1; /* expect receive packets with * sequence numbers? */ unsigned int send_seq:1; /* send packets with sequence |