/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _NFT_REJECT_H_ #define _NFT_REJECT_H_ struct nft_reject { enum nft_reject_types type:8; u8 icmp_code; }; extern const struct nla_policy nft_reject_policy[]; int nft_reject_validate(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nft_data **data); int nft_reject_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]); int nft_reject_dump(struct sk_buff *skb, const struct nft_expr *expr); int nft_reject_icmp_code(u8 code); int nft_reject_icmpv6_code(u8 code); #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Patrick McHardy | 74 | 69.81% | 2 | 40.00% |
Liping Zhang | 23 | 21.70% | 1 | 20.00% |
Pablo Neira Ayuso | 8 | 7.55% | 1 | 20.00% |
Greg Kroah-Hartman | 1 | 0.94% | 1 | 20.00% |
Total | 106 | 100.00% | 5 | 100.00% |