]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/netfilter/ipv4/nf_reject.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / include / net / netfilter / ipv4 / nf_reject.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
cc70d069
EL
2#ifndef _IPV4_NF_REJECT_H
3#define _IPV4_NF_REJECT_H
4
052b9498
PNA
5#include <linux/skbuff.h>
6#include <net/ip.h>
51b0a5d8 7#include <net/icmp.h>
cc70d069 8
ee586bbc 9void nf_send_unreach(struct sk_buff *skb_in, int code, int hook);
372892ec 10void nf_send_reset(struct net *net, struct sk_buff *oldskb, int hook);
cc70d069 11
052b9498
PNA
12const struct tcphdr *nf_reject_ip_tcphdr_get(struct sk_buff *oldskb,
13 struct tcphdr *_oth, int hook);
14struct iphdr *nf_reject_iphdr_put(struct sk_buff *nskb,
15 const struct sk_buff *oldskb,
a03a8dbe 16 __u8 protocol, int ttl);
052b9498
PNA
17void nf_reject_ip_tcphdr_put(struct sk_buff *nskb, const struct sk_buff *oldskb,
18 const struct tcphdr *oth);
19
cc70d069 20#endif /* _IPV4_NF_REJECT_H */