ip6t_mh.h 358 B

123456789101112131415
  1. #ifndef _IP6T_MH_H
  2. #define _IP6T_MH_H
  3. /* MH matching stuff */
  4. struct ip6t_mh
  5. {
  6. u_int8_t types[2]; /* MH type range */
  7. u_int8_t invflags; /* Inverse flags */
  8. };
  9. /* Values for "invflags" field in struct ip6t_mh. */
  10. #define IP6T_MH_INV_TYPE 0x01 /* Invert the sense of type. */
  11. #define IP6T_MH_INV_MASK 0x01 /* All possible flags. */
  12. #endif /*_IP6T_MH_H*/