~ubuntu-branches/ubuntu/karmic/conntrack/karmic

« back to all changes in this revision

Viewing changes to include/us-conntrack.h

  • Committer: Bazaar Package Importer
  • Author(s): Andres Rodriguez
  • Date: 2009-06-18 18:27:31 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090618182731-xlunt56xusrrif92
Tags: 1:0.9.12-1ubuntu1
* Merge from debian unstable (LP: #380358), remaining changes:
  - Error on fwrite failure in src/read_config_lex.c.
  - Patch from Kees Cook to not ignore return value of chdir call.
* debian/copyright: Updated download site.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _US_CONNTRACK_H_
2
 
#define _US_CONNTRACK_H_
3
 
 
4
 
#include "alarm.h"
5
 
#include <libnetfilter_conntrack/libnetfilter_conntrack.h>
6
 
 
7
 
struct us_conntrack {
8
 
        struct  nf_conntrack *ct;
9
 
        struct  cache *cache; 
10
 
        struct  alarm_block alarm;
11
 
        char    data[0];
12
 
};
13
 
 
14
 
#endif