ext3: Add journal error check into ext3_delete_entry()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / net / ah.h
blobf0129f79a31a16a57639856953d8f09d62e8d1a2
1 #ifndef _NET_AH_H
2 #define _NET_AH_H
4 #include <linux/skbuff.h>
6 /* This is the maximum truncated ICV length that we know of. */
7 #define MAX_AH_AUTH_LEN 12
9 struct crypto_ahash;
11 struct ah_data {
12 int icv_full_len;
13 int icv_trunc_len;
15 struct crypto_ahash *ahash;
18 struct ip_auth_hdr;
20 static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
22 return (struct ip_auth_hdr *)skb_transport_header(skb);
25 #endif