summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-12-01 20:12:22 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2017-01-03 14:21:53 +0100
commit85d2072eccdfcb7e8045a60d8bb939de61d1c04b (patch)
treea279ec7ba1b8b6cdec507f3171c80e41f47695a1 /include
parentdeaf962ebd7c6b9d8a161d9378a710031e4f1dd6 (diff)
src: support for stateful object monitoring
This patch extends the event monitoring infrastructure to catch events of addition and removal of stateful objects. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r--include/rule.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/rule.h b/include/rule.h
index 86c0392f..878563d9 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -283,7 +283,10 @@ struct obj {
struct obj *obj_alloc(const struct location *loc);
void obj_free(struct obj *obj);
void obj_add_hash(struct obj *obj, struct table *table);
+struct obj *obj_lookup(const struct table *table, const char *name,
+ uint32_t type);
void obj_print(const struct obj *n);
+void obj_print_plain(const struct obj *obj);
const char *obj_type_name(uint32_t type);
/**