1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */ 2*4882a593Smuzhiyun /*************************************************************************** 3*4882a593Smuzhiyun * Linux PPP over L2TP (PPPoL2TP) Socket Implementation (RFC 2661) 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * This file supplies definitions required by the PPP over L2TP driver 6*4882a593Smuzhiyun * (l2tp_ppp.c). All version information wrt this file is located in l2tp_ppp.c 7*4882a593Smuzhiyun * 8*4882a593Smuzhiyun * License: 9*4882a593Smuzhiyun */ 10*4882a593Smuzhiyun #ifndef __LINUX_IF_PPPOL2TP_H 11*4882a593Smuzhiyun #define __LINUX_IF_PPPOL2TP_H 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun #include <linux/in.h> 14*4882a593Smuzhiyun #include <linux/in6.h> 15*4882a593Smuzhiyun #include <uapi/linux/if_pppol2tp.h> 16*4882a593Smuzhiyun 17*4882a593Smuzhiyun #endif 18