aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-19 17:16:09 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-19 17:16:09 +0000
commit5f6a351df72f76f98ee1ed3494d025fe591fdb69 (patch)
tree263a4fcc0c99484d27bf868e7de753474603906a /tmux.h
parent95323a6a3612a155420dbb17b424db14cabcf06d (diff)
downloadrtmux-5f6a351df72f76f98ee1ed3494d025fe591fdb69.tar.gz
rtmux-5f6a351df72f76f98ee1ed3494d025fe591fdb69.tar.bz2
rtmux-5f6a351df72f76f98ee1ed3494d025fe591fdb69.zip
Start the first client with a special socketpair so it is already known to the
server rather than playing silly games to get them synchronised before doing anything. Change attach-session to start the server.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 8d99927e..4dff2bdd 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.241 2009-01-18 21:46:30 nicm Exp $ */
+/* $Id: tmux.h,v 1.242 2009-01-19 17:16:09 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1253,6 +1253,7 @@ const char *key_string_lookup_key(int);
/* server.c */
extern struct clients clients;
+struct client *server_create_client(int);
int server_client_index(struct client *);
int server_start(const char *);