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

« back to all changes in this revision

Viewing changes to include/linux/netfilter_bridge/ebt_ip.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:
15
15
#ifndef __LINUX_BRIDGE_EBT_IP_H
16
16
#define __LINUX_BRIDGE_EBT_IP_H
17
17
 
 
18
#include <linux/types.h>
 
19
 
18
20
#define EBT_IP_SOURCE 0x01
19
21
#define EBT_IP_DEST 0x02
20
22
#define EBT_IP_TOS 0x04
31
33
        __be32 daddr;
32
34
        __be32 smsk;
33
35
        __be32 dmsk;
34
 
        uint8_t  tos;
35
 
        uint8_t  protocol;
36
 
        uint8_t  bitmask;
37
 
        uint8_t  invflags;
38
 
        uint16_t sport[2];
39
 
        uint16_t dport[2];
 
36
        __u8  tos;
 
37
        __u8  protocol;
 
38
        __u8  bitmask;
 
39
        __u8  invflags;
 
40
        __u16 sport[2];
 
41
        __u16 dport[2];
40
42
};
41
43
 
42
44
#endif