summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libnetfilter_acct/libnetfilter_acct.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/libnetfilter_acct/libnetfilter_acct.h b/include/libnetfilter_acct/libnetfilter_acct.h
index 18f90c4..421e15a 100644
--- a/include/libnetfilter_acct/libnetfilter_acct.h
+++ b/include/libnetfilter_acct/libnetfilter_acct.h
@@ -1,10 +1,15 @@
#ifndef _LIBNETFILTER_ACCT_H_
#define _LIBNETFILTER_ACCT_H_
-#include <sys/types.h>
#include <stdint.h>
#include <linux/netfilter/nfnetlink_acct.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <sys/types.h>
+
struct nfacct;
enum nfacct_attr_type {
@@ -39,4 +44,8 @@ int nfacct_nlmsg_parse_payload(const struct nlmsghdr *nlh, struct nfacct *nfacct
int nfacct_snprintf(char *buf, size_t size, struct nfacct *nfacct, uint16_t type, uint16_t flags);
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
#endif