split dev_queue
[cor.git] / include / net / ah.h
blob2d2dea521169b5cc7a4c898adbe647e4c9906058
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NET_AH_H
3 #define _NET_AH_H
5 #include <linux/skbuff.h>
7 struct crypto_ahash;
9 struct ah_data {
10 int icv_full_len;
11 int icv_trunc_len;
13 struct crypto_ahash *ahash;
16 struct ip_auth_hdr;
18 static inline struct ip_auth_hdr *ip_auth_hdr(const struct sk_buff *skb)
20 return (struct ip_auth_hdr *)skb_transport_header(skb);
23 #endif