root/include/linux/netfilter/nf_conntrack_irc.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef _NF_CONNTRACK_IRC_H
   3 #define _NF_CONNTRACK_IRC_H
   4 
   5 #include <linux/netfilter.h>
   6 #include <linux/skbuff.h>
   7 #include <net/netfilter/nf_conntrack_expect.h>
   8 
   9 #define IRC_PORT        6667
  10 
  11 extern unsigned int (*nf_nat_irc_hook)(struct sk_buff *skb,
  12                                        enum ip_conntrack_info ctinfo,
  13                                        unsigned int protoff,
  14                                        unsigned int matchoff,
  15                                        unsigned int matchlen,
  16                                        struct nf_conntrack_expect *exp);
  17 
  18 #endif /* _NF_CONNTRACK_IRC_H */

/* [<][>][^][v][top][bottom][index][help] */