summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2018-06-27 11:50:41 +0200
committerFlorian Westphal <fw@strlen.de>2018-07-02 18:07:13 +0200
commitdf0620e7ccb2026a3e18634632f4be5314075906 (patch)
treeaa55ba4bf626cc35d43b3d9a15423c240030e263 /include
parent4f3c04785c807623c483b184e534b935c7580153 (diff)
extensions: use __attribute__((constructor)) for autoregistration
The ebtables initialization is easier, and, judging from the "static" recipe in Makefile, that calling ebt_*_register ahead of main is safe. This means that a static build won't need the pseudomain hack, and that -nostartfiles can also go away. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include')
-rw-r--r--include/ebtables_u.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ebtables_u.h b/include/ebtables_u.h
index 3235bf5..7f5968d 100644
--- a/include/ebtables_u.h
+++ b/include/ebtables_u.h
@@ -44,6 +44,8 @@
#define EBT_ALIGN(s) (((s) + (EBT_MIN_ALIGN-1)) & ~(EBT_MIN_ALIGN-1))
#define ERRORMSG_MAXLEN 128
+#define _INIT __attribute__((constructor)) _init
+
struct ebt_u_entries
{
int policy;