blob: 0856cf4f6414ae8be39e53b02d94befff33e63fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|