aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl-core.h
diff options
context:
space:
mode:
authorGravatar Robert Manea <gotmor@gmail.com>2009-10-13 14:09:21 +0200
committerGravatar Robert Manea <gotmor@gmail.com>2009-10-13 14:09:21 +0200
commit19806c1467b71d49881a9d76e28f3c656312e77b (patch)
tree6e0ba5115bc12e230549d59e3874ff996beeef9f /uzbl-core.h
parent44af2da9c23c918912a99682f89e4abd85709e72 (diff)
added multiple clients per socket support and --connect-socket argument
Diffstat (limited to 'uzbl-core.h')
-rw-r--r--uzbl-core.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/uzbl-core.h b/uzbl-core.h
index f0b60ab..12c1716 100644
--- a/uzbl-core.h
+++ b/uzbl-core.h
@@ -81,7 +81,8 @@ typedef struct {
GHashTable *proto_var;
gchar *sync_stdout;
- GIOChannel *clientchan;
+ GIOChannel *connect_chan;
+ GPtrArray *client_chan;
} Communication;
@@ -98,6 +99,7 @@ typedef struct {
gchar* searchtx;
gboolean verbose;
GPtrArray *event_buffer;
+ gchar* connect_socket_name;
} State;