]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
l2tp: drop lns_mode
authorGuillaume Nault <g.nault@alphalink.fr>
Fri, 27 Jul 2018 10:26:32 +0000 (12:26 +0200)
committerDavid Ahern <dsahern@gmail.com>
Sun, 12 Aug 2018 21:05:11 +0000 (14:05 -0700)
This option is never set.

Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Signed-off-by: David Ahern <dsahern@gmail.com>
ip/ipl2tp.c

index 41fefb85f32e04f59894eeb37629f65a904cc693..5e7f0390697e68545f3bbab2e8317c9b7351da64 100644 (file)
@@ -58,7 +58,6 @@ struct l2tp_parm {
        unsigned int udp_csum:1;
        unsigned int recv_seq:1;
        unsigned int send_seq:1;
-       unsigned int lns_mode:1;
        unsigned int tunnel:1;
        unsigned int session:1;
        int reorder_timeout;
@@ -161,8 +160,6 @@ static int create_session(struct l2tp_parm *p)
                addattr8(&req.n, 1024, L2TP_ATTR_RECV_SEQ, 1);
        if (p->send_seq)
                addattr8(&req.n, 1024, L2TP_ATTR_SEND_SEQ, 1);
-       if (p->lns_mode)
-               addattr(&req.n, 1024, L2TP_ATTR_LNS_MODE);
        if (p->reorder_timeout)
                addattr64(&req.n, 1024, L2TP_ATTR_RECV_TIMEOUT,
                                          p->reorder_timeout);