summaryrefslogtreecommitdiff
path: root/driver/gre.h
diff options
context:
space:
mode:
authorKozlov Dmitry <xeb@mail.ru>2012-06-26 19:17:34 +0400
committerKozlov Dmitry <xeb@mail.ru>2012-06-26 19:17:34 +0400
commit07264d491f0605088c94e8be9f2b593dd4882067 (patch)
tree58329f975626fc64ce220403721c03463121a12e /driver/gre.h
parent2b256df842764409f0d1cd7a37afabcef4e2785b (diff)
downloadaccel-ppp-xebd-07264d491f0605088c94e8be9f2b593dd4882067.tar.gz
accel-ppp-xebd-07264d491f0605088c94e8be9f2b593dd4882067.zip
ipoe: initial implementation of kernel module
Diffstat (limited to 'driver/gre.h')
-rw-r--r--driver/gre.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/driver/gre.h b/driver/gre.h
deleted file mode 100644
index 2ca7f74..0000000
--- a/driver/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