summaryrefslogtreecommitdiff
path: root/communication_source.h
diff options
context:
space:
mode:
Diffstat (limited to 'communication_source.h')
-rw-r--r--communication_source.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/communication_source.h b/communication_source.h
new file mode 100644
index 0000000..0856cf4
--- /dev/null
+++ b/communication_source.h
@@ -0,0 +1,16 @@
+#ifndef COMMUNICATION_SOURCE_H
+#define COMMUNICATION_SOURCE_H
+
+#include "servers.h"
+
+#include <glib.h>
+
+struct communication_job {
+ struct server *server;
+};
+
+void communication_job_add(struct server *server);
+
+void communication_source_init(GMainLoop *mainloop);
+
+#endif