Some egress types will be added later on and the global types file
doesn't really need the types anyway.
Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
#include "lq_plugin.h"
#include "common/autobuf.h"
#include "gateway.h"
+#include "egressTypes.h"
#include "olsrd_jsoninfo.h"
#include "olsrd_plugin.h"
#include "../ipcalc.h"
#include "../net_olsr.h"
#include "../common/autobuf.h"
+#include "../egressTypes.h"
#include <stdarg.h>
#include <stdio.h>
#include "defs.h"
#include "net_olsr.h"
#include "olsr.h"
+#include "egressTypes.h"
#include <assert.h>
#include <stdio.h>
#include "../net_olsr.h"
#include "../link_set.h"
#include "../olsr.h"
+#include "../egressTypes.h"
#include <stddef.h>
#include <stdio.h>
--- /dev/null
+#ifndef EGRESSTYPES_H
+#define EGRESSTYPES_H
+
+#ifdef __linux__
+
+/* Plugin includes */
+
+/* OLSRD includes */
+
+/* System includes */
+
+struct sgw_egress_if {
+ char *name;
+ struct sgw_egress_if *next;
+};
+
+#endif /* __linux__ */
+
+#endif /* EGRESSTYPES_H */
#include "gateway_default_handler.h"
#include "gateway_list.h"
#include "gateway.h"
+#include "egressTypes.h"
#include <assert.h>
#include <net/if.h>
struct plugin_entry *next;
};
-struct sgw_egress_if {
- char *name;
- struct sgw_egress_if *next;
-};
-
/*
* The config struct
*/