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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Header for use in defining a given protocol for connection tracking. */
  2. #ifndef _IP_CONNTRACK_PROTOCOL_H
  3. #define _IP_CONNTRACK_PROTOCOL_H
  4. #include <linux/netfilter_ipv4/ip_conntrack.h>
  5. struct ip_conntrack_protocol
  6. {
  7. /* Next pointer. */
  8. struct list_head list;
  9. /* Protocol number. */
  10. u_int8_t proto;
  11. /* Protocol name */
  12. const char *name;
  13. /* Try to fill in the third arg; return true if possible. */
  14. int (*pkt_to_tuple)(const void *datah, size_t datalen,
  15.     struct ip_conntrack_tuple *tuple);
  16. /* Invert the per-proto part of the tuple: ie. turn xmit into reply.
  17.  * Some packets can't be inverted: return 0 in that case.
  18.  */
  19. int (*invert_tuple)(struct ip_conntrack_tuple *inverse,
  20.     const struct ip_conntrack_tuple *orig);
  21. /* Print out the per-protocol part of the tuple. */
  22. unsigned int (*print_tuple)(char *buffer,
  23.     const struct ip_conntrack_tuple *);
  24. /* Print out the private part of the conntrack. */
  25. unsigned int (*print_conntrack)(char *buffer,
  26. const struct ip_conntrack *);
  27. /* Returns verdict for packet, or -1 for invalid. */
  28. int (*packet)(struct ip_conntrack *conntrack,
  29.       struct iphdr *iph, size_t len,
  30.       enum ip_conntrack_info ctinfo);
  31. /* Called when a new connection for this protocol found;
  32.  * returns TRUE if it's OK.  If so, packet() called next. */
  33. int (*new)(struct ip_conntrack *conntrack, struct iphdr *iph,
  34.    size_t len);
  35. /* Module (if any) which this is connected to. */
  36. struct module *me;
  37. };
  38. /* Protocol registration. */
  39. extern int ip_conntrack_protocol_register(struct ip_conntrack_protocol *proto);
  40. extern void ip_conntrack_protocol_unregister(struct ip_conntrack_protocol *proto);
  41. /* Existing built-in protocols */
  42. extern struct ip_conntrack_protocol ip_conntrack_protocol_tcp;
  43. extern struct ip_conntrack_protocol ip_conntrack_protocol_udp;
  44. extern struct ip_conntrack_protocol ip_conntrack_protocol_icmp;
  45. extern int ip_conntrack_protocol_tcp_init(void);
  46. #endif /*_IP_CONNTRACK_PROTOCOL_H*/