summaryrefslogtreecommitdiff
path: root/cesar/cl/stub/src/mcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/cl/stub/src/mcast.c')
-rw-r--r--cesar/cl/stub/src/mcast.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/cesar/cl/stub/src/mcast.c b/cesar/cl/stub/src/mcast.c
new file mode 100644
index 0000000000..a3a4e99b05
--- /dev/null
+++ b/cesar/cl/stub/src/mcast.c
@@ -0,0 +1,26 @@
+/* Cesar project {{{
+ *
+ * Copyright (C) 2011 Spidcom
+ *
+ * <<<Licence>>>
+ *
+ * }}} */
+/**
+ * \file cl/stub/src/mcast.c
+ * \brief Stub the mcast functions
+ * \ingroup cl
+ *
+ */
+#include "common/std.h"
+#include "cl/cl.h"
+#include "cl/mcast.h"
+
+igmp_groups_t*
+cl_get_igmp_groups (cl_t *ctx) __attribute__((weak));
+
+igmp_groups_t*
+cl_get_igmp_groups (cl_t *ctx)
+{
+ dbg_assert (ctx);
+ return NULL;
+};