ip_conntrack_irc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* IRC extension for IP connection tracking.
  2.  * (C) 2000 by Harald Welte <laforge@gnumonks.org>
  3.  * based on RR's ip_conntrack_ftp.h
  4.  *
  5.  * ip_conntrack_irc.h,v 1.6 2000/11/07 18:26:42 laforge Exp
  6.  *
  7.  *      This program is free software; you can redistribute it and/or
  8.  *      modify it under the terms of the GNU General Public License
  9.  *      as published by the Free Software Foundation; either version
  10.  *      2 of the License, or (at your option) any later version.
  11.  *
  12.  *
  13.  */
  14. #ifndef _IP_CONNTRACK_IRC_H
  15. #define _IP_CONNTRACK_IRC_H
  16. #ifndef __KERNEL__
  17. #error Only in kernel.
  18. #endif
  19. #include <linux/netfilter_ipv4/lockhelp.h>
  20. #define IP_CONNTR_IRC 2
  21. struct dccproto {
  22. char* match;
  23. int matchlen;
  24. };
  25. /* Protects irc part of conntracks */
  26. DECLARE_LOCK_EXTERN(ip_irc_lock);
  27. /* We record seq number and length of irc ip/port text here: all in
  28.    host order. */
  29. struct ip_ct_irc
  30. {
  31. /* This tells NAT that this is an IRC connection */
  32. int is_irc;
  33. /* sequence number where address part of DCC command begins */
  34. u_int32_t seq;
  35. /* 0 means not found yet */
  36. u_int32_t len;
  37. /* Port that was to be used */
  38. u_int16_t port;
  39. };
  40. #endif /* _IP_CONNTRACK_IRC_H */