summaryrefslogtreecommitdiff
path: root/linux/include/mast.h
diff options
context:
space:
mode:
authorRene Mayrhofer <rene@mayrhofer.eu.org>2007-04-12 20:30:08 +0000
committerRene Mayrhofer <rene@mayrhofer.eu.org>2007-04-12 20:30:08 +0000
commitb0d8ed94fe9e74afb49fdf5f11e4add29879c65c (patch)
treeb20167235628771046e940a82a906a6d0991ee4a /linux/include/mast.h
parentea939d07c84d2a8e51215458063fc05e9c399290 (diff)
downloadvyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.tar.gz
vyos-strongswan-b0d8ed94fe9e74afb49fdf5f11e4add29879c65c.zip
[svn-upgrade] Integrating new upstream version, strongswan (4.1.1)
Diffstat (limited to 'linux/include/mast.h')
-rw-r--r--linux/include/mast.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/linux/include/mast.h b/linux/include/mast.h
deleted file mode 100644
index 626559b59..000000000
--- a/linux/include/mast.h
+++ /dev/null
@@ -1,33 +0,0 @@
-struct mast_callbacks {
- int (*packet_encap)(struct device *mast, void *context,
- struct sk_buff *skb, int flowref);
- int (*link_inquire)(struct device *mast, void *context);
-};
-
-
-struct device *mast_init (int family,
- struct mast_callbacks *callbacks,
- unsigned int flags,
- unsigned int desired_unit,
- unsigned int max_flowref,
- void *context);
-
-int mast_destroy(struct device *mast);
-
-int mast_recv(struct device *mast, struct sk_buff *skb, int flowref);
-
-/* free this skb as being useless, increment failure count. */
-int mast_toast(struct device *mast, struct sk_buff *skb, int flowref);
-
-int mast_linkstat (struct device *mast, int flowref,
- int status);
-
-int mast_setreference (struct device *mast,
- int defaultSA);
-
-int mast_setneighbor (struct device *mast,
- struct sockaddr *source,
- struct sockaddr *destination,
- int flowref);
-
-