tc: introduce Flower classifier
[linux-2.6/btrfs-unstable.git] / include / net / ah.h
blob4e2dfa474a7e6e8deaeb56ec2a9115345141ac58
1 #ifndef _NET_AH_H
2 #define _NET_AH_H
4 #include <linux/skbuff.h>
6 struct crypto_ahash;
8 struct ah_data {
9 int icv_full_len;
10 int icv_trunc_len;
12 struct crypto_ahash *ahash;
15 struct ip_auth_hdr;
17 static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
19 return (struct ip_auth_hdr *)skb_transport_header(skb);
22 #endif