diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ulogd/Makefile.am | 4 | ||||
-rw-r--r-- | include/ulogd/namespace.h | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/include/ulogd/Makefile.am b/include/ulogd/Makefile.am index e4b41c4..65d74ba 100644 --- a/include/ulogd/Makefile.am +++ b/include/ulogd/Makefile.am @@ -1 +1,3 @@ -noinst_HEADERS = conffile.h db.h ipfix_protocol.h linuxlist.h ulogd.h printpkt.h printflow.h common.h linux_rbtree.h timer.h slist.h hash.h jhash.h addr.h +noinst_HEADERS = addr.h common.h conffile.h db.h hash.h ipfix_protocol.h \ + jhash.h linux_rbtree.h linuxlist.h namespace.h printflow.h \ + printpkt.h slist.h timer.h ulogd.h diff --git a/include/ulogd/namespace.h b/include/ulogd/namespace.h new file mode 100644 index 0000000..48e2e9a --- /dev/null +++ b/include/ulogd/namespace.h @@ -0,0 +1,8 @@ +#ifndef _NAMESPACE_H_ +#define _NAMESPACE_H_ + +int join_netns_fd(const int target_netns_fd, int *const source_netns_fd_ptr); +int join_netns_path(const char *const target_netns_path, + int *const source_netns_fd_ptr); + +#endif |