hc
2023-06-12 22f2094bc421ab4159aec033f44a0aa239ac8e20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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);
 
#endif