Blame include/libnetfilter_queue/libnetfilter_queue_ipv4.h

Packit c43939
#ifndef _LIBNFQUEUE_IPV4_
Packit c43939
#define _LIBNFQUEUE_IPV4_
Packit c43939
Packit c43939
struct pkt_buff;
Packit c43939
struct iphdr;
Packit c43939
Packit c43939
struct iphdr *nfq_ip_get_hdr(struct pkt_buff *pktb);
Packit c43939
int nfq_ip_set_transport_header(struct pkt_buff *pktb, struct iphdr *iph);
Packit c43939
void nfq_ip_set_checksum(struct iphdr *iph);
Packit c43939
int nfq_ip_mangle(struct pkt_buff *pktb, unsigned int dataoff, unsigned int match_offset, unsigned int match_len, const char *rep_buffer, unsigned int rep_len);
Packit c43939
int nfq_ip_snprintf(char *buf, size_t size, const struct iphdr *iph);
Packit c43939
Packit c43939
#endif