9
|
1 /*
|
196
|
2 * Geeqie
|
9
|
3 * (C) 2004 John Ellis
|
475
|
4 * Copyright (C) 2008 The Geeqie Team
|
9
|
5 *
|
|
6 * Author: John Ellis
|
|
7 *
|
|
8 * This software is released under the GNU General Public License (GNU GPL).
|
|
9 * Please read the included file COPYING for more information.
|
|
10 * This software comes with no warranty of any kind, use at your own risk!
|
|
11 */
|
|
12
|
|
13
|
|
14 #ifndef REMOTE_H
|
|
15 #define REMOTE_H
|
|
16
|
|
17
|
|
18 typedef struct _RemoteConnection RemoteConnection;
|
|
19
|
|
20 typedef void RemoteReadFunc(RemoteConnection *rc, const char *text, gpointer data);
|
|
21
|
|
22 struct _RemoteConnection {
|
|
23 gint server;
|
|
24 int fd;
|
|
25 gchar *path;
|
|
26
|
|
27 gint channel_id;
|
|
28 RemoteReadFunc *read_func;
|
|
29 gpointer read_data;
|
|
30
|
|
31 GList *clients;
|
|
32 };
|
442
|
33
|
|
34
|
9
|
35 RemoteConnection *remote_server_open(const gchar *path);
|
|
36 void remote_server_subscribe(RemoteConnection *rc, RemoteReadFunc *func, gpointer data);
|
|
37
|
|
38 RemoteConnection *remote_client_open(const gchar *path);
|
|
39 gint remote_client_send(RemoteConnection *rc, const gchar *text);
|
|
40
|
|
41 void remote_close(RemoteConnection *rc);
|
|
42
|
|
43
|
|
44 #endif
|