~ubuntu-branches/ubuntu/raring/ebtables/raring

« back to all changes in this revision

Viewing changes to include/linux/netfilter_bridge/ebt_xt.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2009-06-28 20:01:25 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090628200125-kc5hc1b5w8o9cjqr
Tags: 2.0.9.1-1
* New upstream release:
  * New modules for ip6 and nflog.
* Bump Standards version to 3.8.2:
  * Catch postrm errors.
  * Specify GPL version and cleanup copyright file.
* Bump debhelper level to 7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __LINUX_BRIDGE_EBT_IP_H
2
 
#define __LINUX_BRIDGE_EBT_IP_H
3
 
 
4
 
#include "linux/netfilter/x_tables.h"
5
 
 
6
 
#define EBT_XT_MATCH "xt"
7
 
 
8
 
struct ebt_xt_info
9
 
{
10
 
        /* points to the relevant module's struct containing all essential
11
 
         * data (userspace and kernel) */
12
 
        void *xt_match_struct;
13
 
        unsigned char data[0] __attribute__ ((aligned (__alignof__(struct ebt_replace))));
14
 
};
15
 
 
16
 
#endif