-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 236642 b: refs/heads/master c: a992ca2 h: refs/heads/master v: v3
- Loading branch information
Pablo Neira Ayuso
authored and
Patrick McHardy
committed
Jan 19, 2011
1 parent
3d48151
commit 5030ddc
Showing
11 changed files
with
313 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 93557f53e1fbd9e2b6574ab0a9b5852628fde9e3 | ||
refs/heads/master: a992ca2a0498edd22a88ac8c41570f536de29c9e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#ifndef _NF_CONNTRACK_TSTAMP_H | ||
#define _NF_CONNTRACK_TSTAMP_H | ||
|
||
#include <net/net_namespace.h> | ||
#include <linux/netfilter/nf_conntrack_common.h> | ||
#include <linux/netfilter/nf_conntrack_tuple_common.h> | ||
#include <net/netfilter/nf_conntrack.h> | ||
#include <net/netfilter/nf_conntrack_extend.h> | ||
|
||
struct nf_conn_tstamp { | ||
u_int64_t start; | ||
u_int64_t stop; | ||
}; | ||
|
||
static inline | ||
struct nf_conn_tstamp *nf_conn_tstamp_find(const struct nf_conn *ct) | ||
{ | ||
#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP | ||
return nf_ct_ext_find(ct, NF_CT_EXT_TSTAMP); | ||
#else | ||
return NULL; | ||
#endif | ||
} | ||
|
||
static inline | ||
struct nf_conn_tstamp *nf_ct_tstamp_ext_add(struct nf_conn *ct, gfp_t gfp) | ||
{ | ||
#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP | ||
struct net *net = nf_ct_net(ct); | ||
|
||
if (!net->ct.sysctl_tstamp) | ||
return NULL; | ||
|
||
return nf_ct_ext_add(ct, NF_CT_EXT_TSTAMP, gfp); | ||
#else | ||
return NULL; | ||
#endif | ||
}; | ||
|
||
static inline bool nf_ct_tstamp_enabled(struct net *net) | ||
{ | ||
return net->ct.sysctl_tstamp != 0; | ||
} | ||
|
||
static inline void nf_ct_set_tstamp(struct net *net, bool enable) | ||
{ | ||
net->ct.sysctl_tstamp = enable; | ||
} | ||
|
||
extern int nf_conntrack_tstamp_init(struct net *net); | ||
extern void nf_conntrack_tstamp_fini(struct net *net); | ||
|
||
#endif /* _NF_CONNTRACK_TSTAMP_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.