Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
423 giacomo 1
#ifndef _IP_CONNTRACK_AMANDA_H
2
#define _IP_CONNTRACK_AMANDA_H
3
/* AMANDA tracking. */
4
 
5
#ifdef __KERNEL__
6
 
7
#include <linux/netfilter_ipv4/lockhelp.h>
8
 
9
/* Protects amanda part of conntracks */
10
DECLARE_LOCK_EXTERN(ip_amanda_lock);
11
 
12
#endif
13
 
14
struct ip_ct_amanda_expect
15
{
16
        u_int16_t port;         /* port number of this expectation */
17
        u_int16_t offset;       /* offset of the port specification in ctrl packet */
18
        u_int16_t len;          /* the length of the port number specification */
19
};
20
 
21
#endif /* _IP_CONNTRACK_AMANDA_H */