~ubuntu-branches/ubuntu/precise/iptables/precise

« back to all changes in this revision

Viewing changes to include/linux/netfilter/xt_conntrack.h

  • Committer: Package Import Robot
  • Author(s): Jamie Strandboge
  • Date: 2011-11-07 13:46:11 UTC
  • mfrom: (5.1.9) (2.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20111107134611-kc82oc327fb9ctq6
Tags: 1.4.12-1ubuntu1
* Merge from Debian unstable (LP: #887192). Remaining changes:
  - 9000-howtos.patch: add howtos/ and install them
  - 9001-build-libipq_pic.la.patch: Build libipq_pic.la with -fPIC
  - debian/control: Build-Depends on linuxdoc-tools
  - debian/iptables.install: install NAT and packetfilter howtos into
    /usr/share/doc
  - debian/iptables-dev.install: install netfilter howto into /usr/share/doc
  - debian/iptables-dev.doc-base.netfilter-extensions,
    debian/iptables-dev.doc-base.netfilter-hacking,
    debian/iptables.doc-base.nat, debian/iptables.doc-base.packet-filter: add
    howtos
  - debian/iptables-dev.install: install lib/*.la in usr/lib
  - No longer apply the following:
    + 9002-xt_recent-reap.patch: this requires a rewrite of the patch. For
      now adjust series to not apply, file a bug, assigning to the kernel
      team. Once they have resubmitted upstream, we can take the new patch.
    + 9003-compilation-error.patch: no longer needed with newer iptables

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        __u16 state_mask, status_mask;
59
59
};
60
60
 
 
61
struct xt_conntrack_mtinfo3 {
 
62
        union nf_inet_addr origsrc_addr, origsrc_mask;
 
63
        union nf_inet_addr origdst_addr, origdst_mask;
 
64
        union nf_inet_addr replsrc_addr, replsrc_mask;
 
65
        union nf_inet_addr repldst_addr, repldst_mask;
 
66
        __u32 expires_min, expires_max;
 
67
        __u16 l4proto;
 
68
        __u16 origsrc_port, origdst_port;
 
69
        __u16 replsrc_port, repldst_port;
 
70
        __u16 match_flags, invert_flags;
 
71
        __u16 state_mask, status_mask;
 
72
        __u16 origsrc_port_high, origdst_port_high;
 
73
        __u16 replsrc_port_high, repldst_port_high;
 
74
};
 
75
 
61
76
#endif /*_XT_CONNTRACK_H*/