Contributors: 12
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Eric Leblond |
33 |
29.73% |
1 |
5.88% |
| Eric W. Biedermann |
15 |
13.51% |
1 |
5.88% |
| Florian Westphal |
15 |
13.51% |
2 |
11.76% |
| Pablo Neira Ayuso |
11 |
9.91% |
3 |
17.65% |
| Linus Torvalds (pre-git) |
9 |
8.11% |
2 |
11.76% |
| Jose M. Guisado Gomez |
8 |
7.21% |
1 |
5.88% |
| Patrick McHardy |
7 |
6.31% |
2 |
11.76% |
| Jan Engelhardt |
4 |
3.60% |
1 |
5.88% |
| Alin Nastac |
3 |
2.70% |
1 |
5.88% |
| Stanislav Fomichev |
3 |
2.70% |
1 |
5.88% |
| Linus Torvalds |
2 |
1.80% |
1 |
5.88% |
| Greg Kroah-Hartman |
1 |
0.90% |
1 |
5.88% |
| Total |
111 |
|
17 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _IPV4_NF_REJECT_H
#define _IPV4_NF_REJECT_H
#include <linux/skbuff.h>
#include <net/ip.h>
#include <net/icmp.h>
#include <net/netfilter/nf_reject.h>
void nf_send_unreach(struct sk_buff *skb_in, int code, int hook);
void nf_send_reset(struct net *net, struct sock *, struct sk_buff *oldskb,
int hook);
struct sk_buff *nf_reject_skb_v4_unreach(struct net *net,
struct sk_buff *oldskb,
const struct net_device *dev,
int hook, u8 code);
struct sk_buff *nf_reject_skb_v4_tcp_reset(struct net *net,
struct sk_buff *oldskb,
const struct net_device *dev,
int hook);
#endif /* _IPV4_NF_REJECT_H */