diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-06-26 19:17:34 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-06-26 19:17:34 +0400 |
commit | 07264d491f0605088c94e8be9f2b593dd4882067 (patch) | |
tree | 58329f975626fc64ce220403721c03463121a12e /driver/gre.h | |
parent | 2b256df842764409f0d1cd7a37afabcef4e2785b (diff) | |
download | accel-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.h | 18 |
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 |