~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/linux/netfilter_ipv6/ip6t_hl.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#ifndef _IP6T_HL_H
6
6
#define _IP6T_HL_H
7
7
 
 
8
#include <linux/types.h>
 
9
 
8
10
enum {
9
11
        IP6T_HL_EQ = 0,         /* equals */
10
12
        IP6T_HL_NE,             /* not equals */
14
16
 
15
17
 
16
18
struct ip6t_hl_info {
17
 
        u_int8_t        mode;
18
 
        u_int8_t        hop_limit;
 
19
        __u8    mode;
 
20
        __u8    hop_limit;
19
21
};
20
22
 
21
23