1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2 /***************************************************************************
3 * Linux PPP over L2TP (PPPoL2TP) Socket Implementation (RFC 2661)
5 * This file supplies definitions required by the PPP over L2TP driver
6 * (l2tp_ppp.c). All version information wrt this file is located in l2tp_ppp.c
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
16 #ifndef _UAPI__LINUX_IF_PPPOL2TP_H
17 #define _UAPI__LINUX_IF_PPPOL2TP_H
19 #include <linux/types.h>
21 #include <linux/in6.h>
22 #include <linux/l2tp.h>
24 /* Structure used to connect() the socket to a particular tunnel UDP
27 struct pppol2tp_addr {
28 __kernel_pid_t pid; /* pid that owns the fd.
30 int fd; /* FD of UDP socket to use */
32 struct sockaddr_in addr; /* IP address and port to send to */
34 __u16 s_tunnel, s_session; /* For matching incoming packets */
35 __u16 d_tunnel, d_session; /* For sending outgoing packets */
38 /* Structure used to connect() the socket to a particular tunnel UDP
41 struct pppol2tpin6_addr {
42 __kernel_pid_t pid; /* pid that owns the fd.
44 int fd; /* FD of UDP socket to use */
46 __u16 s_tunnel, s_session; /* For matching incoming packets */
47 __u16 d_tunnel, d_session; /* For sending outgoing packets */
49 struct sockaddr_in6 addr; /* IP address and port to send to */
52 /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
53 * bits. So we need a different sockaddr structure.
55 struct pppol2tpv3_addr {
56 __kernel_pid_t pid; /* pid that owns the fd.
58 int fd; /* FD of UDP or IP socket to use */
60 struct sockaddr_in addr; /* IP address and port to send to */
62 __u32 s_tunnel, s_session; /* For matching incoming packets */
63 __u32 d_tunnel, d_session; /* For sending outgoing packets */
66 struct pppol2tpv3in6_addr {
67 __kernel_pid_t pid; /* pid that owns the fd.
69 int fd; /* FD of UDP or IP socket to use */
71 __u32 s_tunnel, s_session; /* For matching incoming packets */
72 __u32 d_tunnel, d_session; /* For sending outgoing packets */
74 struct sockaddr_in6 addr; /* IP address and port to send to */
78 * DEBUG - bitmask of debug message categories (not used)
79 * SENDSEQ - 0 => don't send packets with sequence numbers
80 * 1 => send packets with sequence numbers
81 * RECVSEQ - 0 => receive packet sequence numbers are optional
82 * 1 => drop receive packets without sequence numbers
83 * LNSMODE - 0 => act as LAC.
85 * REORDERTO - reorder timeout (in millisecs). If 0, don't try to reorder.
88 PPPOL2TP_SO_DEBUG = 1,
89 PPPOL2TP_SO_RECVSEQ = 2,
90 PPPOL2TP_SO_SENDSEQ = 3,
91 PPPOL2TP_SO_LNSMODE = 4,
92 PPPOL2TP_SO_REORDERTO = 5,
95 /* Debug message categories for the DEBUG socket option (deprecated) */
97 PPPOL2TP_MSG_DEBUG = L2TP_MSG_DEBUG,
98 PPPOL2TP_MSG_CONTROL = L2TP_MSG_CONTROL,
99 PPPOL2TP_MSG_SEQ = L2TP_MSG_SEQ,
100 PPPOL2TP_MSG_DATA = L2TP_MSG_DATA,
105 #endif /* _UAPI__LINUX_IF_PPPOL2TP_H */