GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / netfilter_ipv6 / ip6t_hl.h
blob5ef91b8319a8afd7bb320d15d8d90f3e6e7353a9
1 /* ip6tables module for matching the Hop Limit value
2 * Maciej Soltysiak <solt@dns.toxicfilms.tv>
3 * Based on HW's ttl module */
5 #ifndef _IP6T_HL_H
6 #define _IP6T_HL_H
8 enum {
9 IP6T_HL_EQ = 0, /* equals */
10 IP6T_HL_NE, /* not equals */
11 IP6T_HL_LT, /* less than */
12 IP6T_HL_GT, /* greater than */
16 struct ip6t_hl_info {
17 u_int8_t mode;
18 u_int8_t hop_limit;
22 #endif