mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
0d76751fad
This patch adds a new L2TPIP socket family and modifies the core to handle the case where there is no UDP header in the L2TP packet. L2TP/IP uses IP protocol 115. Since L2TP/UDP and L2TP/IP packets differ in layout, the datapath packet handling code needs changes too. Userspace uses an L2TPIP socket instead of a UDP socket when IP encapsulation is required. We can't use raw sockets for this because the semantics of raw sockets don't lend themselves to the socket-per-tunnel model - we need to Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
226 B
Makefile
10 lines
226 B
Makefile
#
|
|
# Makefile for the L2TP.
|
|
#
|
|
|
|
obj-$(CONFIG_L2TP) += l2tp_core.o
|
|
|
|
# Build l2tp as modules if L2TP is M
|
|
obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_PPPOL2TP)) += l2tp_ppp.o
|
|
obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_IP)) += l2tp_ip.o
|