summaryrefslogtreecommitdiffstats
path: root/include/sync.h
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2007-06-19 17:00:44 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2007-06-19 17:00:44 +0000
commit3f3a6701978df8ca16ebb5988eb7a46771deb964 (patch)
tree9a031367cd1b4322d193a85f44b15fbc645d4002 /include/sync.h
parente6f0851b184123ebf04df45e2f29a59f0cb827eb (diff)
- more cleanups and code refactorization
- remove several debug calls - create a child to dispatch dump requests: this will help to simplify the current locking schema. Later.
Diffstat (limited to 'include/sync.h')
-rw-r--r--include/sync.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sync.h b/include/sync.h
index 72f6313..a737e81 100644
--- a/include/sync.h
+++ b/include/sync.h
@@ -1,7 +1,7 @@
#ifndef _SYNC_HOOKS_H_
#define _SYNC_HOOKS_H_
-struct nlnetwork;
+struct nethdr;
struct us_conntrack;
struct sync_mode {
@@ -13,9 +13,9 @@ struct sync_mode {
int (*init)(void);
void (*kill)(void);
int (*local)(int fd, int type, void *data);
- int (*recv)(const struct nlnetwork *net); /* recv callback */
+ int (*recv)(const struct nethdr *net); /* recv callback */
void (*send)(int type, /* send callback */
- const struct nlnetwork *net,
+ const struct nethdr *net,
struct us_conntrack *u);
};