#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 64structcrypto_ahash;structah_data{inticv_full_len;inticv_trunc_len;structcrypto_ahash*ahash;};structip_auth_hdr;staticinlinestructip_auth_hdr*ip_auth_hdr(conststructsk_buff*skb){return(structip_auth_hdr*)skb_transport_header(skb);}#endif