summaryrefslogtreecommitdiff
path: root/drivers/pptp/gre.h
diff options
context:
space:
mode:
authorDenys Fedoryshchenko <denys.f@collabora.com>2026-08-16 09:12:52 +0300
committerGitHub <noreply@github.com>2026-08-16 09:12:52 +0300
commit77cae8318c00d9dda7a7bd1fbdb52e48e183ca85 (patch)
tree57e83f93db175534847c0433dd614bd446fcc0a1 /drivers/pptp/gre.h
parent326bd429d349538cd2cd7781a36ebe6db6e2f403 (diff)
parent9505f3fe72f7930e94aec51188babcabe783e4da (diff)
downloadaccel-ppp-77cae8318c00d9dda7a7bd1fbdb52e48e183ca85.tar.gz
accel-ppp-77cae8318c00d9dda7a7bd1fbdb52e48e183ca85.zip
Merge pull request #349 from nuclearcat/pptp-drop-out-of-tree-driver
pptp: drop the out-of-tree kernel driver
Diffstat (limited to 'drivers/pptp/gre.h')
-rw-r--r--drivers/pptp/gre.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/pptp/gre.h b/drivers/pptp/gre.h
deleted file mode 100644
index 2ca7f749..00000000
--- a/drivers/pptp/gre.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef __LINUX_GRE_H
-#define __LINUX_GRE_H
-
-#include <linux/skbuff.h>
-
-#define GREPROTO_CISCO 0
-#define GREPROTO_PPTP 1
-#define GREPROTO_MAX 2
-
-struct gre_protocol {
- int (*handler)(struct sk_buff *skb);
- void (*err_handler)(struct sk_buff *skb, u32 info);
-};
-
-int gre_add_protocol(struct gre_protocol *proto, u8 version);
-int gre_del_protocol(struct gre_protocol *proto, u8 version);
-
-#endif