summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/net/ah.h
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/include/net/ah.h')
-rw-r--r--ANDROID_3.4.5/include/net/ah.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/ANDROID_3.4.5/include/net/ah.h b/ANDROID_3.4.5/include/net/ah.h
deleted file mode 100644
index ca95b989..00000000
--- a/ANDROID_3.4.5/include/net/ah.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef _NET_AH_H
-#define _NET_AH_H
-
-#include <linux/skbuff.h>
-
-/* This is the maximum truncated ICV length that we know of. */
-#define MAX_AH_AUTH_LEN 64
-
-struct crypto_ahash;
-
-struct ah_data {
- int icv_full_len;
- int icv_trunc_len;
-
- struct crypto_ahash *ahash;
-};
-
-struct ip_auth_hdr;
-
-static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
-{
- return (struct ip_auth_hdr *)skb_transport_header(skb);
-}
-
-#endif