summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2009-03-12 21:19:19 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2009-03-12 21:19:19 +0100
commit338d8fc2da19f5d6a75c339d9e6ecac43b68a1e4 (patch)
tree4fcdc9911c9831de78bd5ae3ae7f0a805fc7ffc2 /include
parent656d5ad7c69a5a7d356c6251743890f1eec0bb71 (diff)
sync-mode: rename mcast_track_*() by nethdr_track_*()
This patch is a cleanup. It renames the mcast_track_*() functions by nethdr_track_*() because this functions are related to message sequence tracking. They are not stick to multicast at all. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r--include/network.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/network.h b/include/network.h
index 7019d7d..b182339 100644
--- a/include/network.h
+++ b/include/network.h
@@ -100,9 +100,9 @@ enum {
SEQ_BEFORE,
};
-int mcast_track_seq(uint32_t seq, uint32_t *exp_seq);
-void mcast_track_update_seq(uint32_t seq);
-int mcast_track_is_seq_set(void);
+int nethdr_track_seq(uint32_t seq, uint32_t *exp_seq);
+void nethdr_track_update_seq(uint32_t seq);
+int nethdr_track_is_seq_set(void);
struct mcast_conf;