summaryrefslogtreecommitdiff
path: root/src/udp.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2014-09-27 18:35:34 +0200
committerChristian Pointner <equinox@spreadspace.org>2014-09-27 18:35:34 +0200
commit15b4ff94088747cb6a29f05a48d2dd55f51acb81 (patch)
treeb34e39caba27da9d6a19a26d5c4a2a86cfcef716 /src/udp.c
parentadded option for mode (diff)
prepared main loop for receiver mode
Diffstat (limited to 'src/udp.c')
-rw-r--r--src/udp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/udp.c b/src/udp.c
index 2d352ee..85a8b39 100644
--- a/src/udp.c
+++ b/src/udp.c
@@ -229,3 +229,14 @@ gboolean attach_udpsinks(struct udp_sinks *sinks)
return TRUE;
}
+
+
+gboolean attach_udpsources(struct udp_sources *sources)
+{
+ if(!sources)
+ return FALSE;
+
+ log_printf(ERROR, "Receiver Mode is not yet implemented!");
+
+ return FALSE;
+}