• Main Page
  • Modules
  • Data Structures
  • Files
  • File List

libnetfilter_conntrack_icmp.h

00001 /*
00002  * (C) 2005 by Pablo Neira Ayuso <pablo@netfilter.org>
00003  *
00004  * This software may be used and distributed according to the terms
00005  * of the GNU General Public License, incorporated herein by reference.
00006  */
00007 
00008 #ifndef _LIBNETFILTER_CONNTRACK_ICMP_H_
00009 #define _LIBNETFILTER_CONNTRACK_ICMP_H_
00010 
00011 #ifdef __cplusplus
00012 extern "C" {
00013 #endif
00014 
00015 /* WARNING: do not use these flags in your new applications, they are obsolete
00016  * and we keep them here to avoid breaking backward compatibility. */
00017 enum icmp_flags {
00018         ICMP_TYPE_BIT = 0,
00019         ICMP_TYPE = (1 << ICMP_TYPE_BIT),
00020 
00021         ICMP_CODE_BIT = 1,
00022         ICMP_CODE = (1 << ICMP_CODE_BIT),
00023 
00024         ICMP_ID_BIT = 2,
00025         ICMP_ID = (1 << ICMP_ID_BIT)
00026 };
00027 
00028 #ifdef __cplusplus
00029 }
00030 #endif
00031 
00032 #endif

Generated on Wed Jan 26 2011 23:11:37 for libnetfilter_conntrack by  doxygen 1.7.1