Release 4.12 include/net/ah.h
#ifndef _NET_AH_H
#define _NET_AH_H
#include <linux/skbuff.h>
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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Herbert Xu | 26 | 100.00% | 1 | 100.00% |
Total | 26 | 100.00% | 1 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Herbert Xu | 29 | 49.15% | 1 | 25.00% |
David S. Miller | 21 | 35.59% | 1 | 25.00% |
Steffen Klassert | 9 | 15.25% | 2 | 50.00% |
Total | 59 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.