diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-03-12 10:01:25 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-03-12 10:01:25 +0000 |
commit | 1a2e66f345a0b3b87654a0ef1765d4e5700d3faa (patch) | |
tree | 1755492d934077b03c2199527cca2ed8aa07420a /tmux.h | |
parent | 39dc80975144692e0fbbc562ac3b0dff7a7f8271 (diff) | |
parent | 2a5702a936829c30b1c427028fdb75a21e2e6771 (diff) | |
download | rtmux-1a2e66f345a0b3b87654a0ef1765d4e5700d3faa.tar.gz rtmux-1a2e66f345a0b3b87654a0ef1765d4e5700d3faa.tar.bz2 rtmux-1a2e66f345a0b3b87654a0ef1765d4e5700d3faa.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1579,6 +1579,8 @@ struct client { #define CLIENT_REDRAWSTATUSALWAYS 0x1000000 #define CLIENT_REDRAWOVERLAY 0x2000000 #define CLIENT_CONTROL_NOOUTPUT 0x4000000 +#define CLIENT_DEFAULTSOCKET 0x8000000 +#define CLIENT_STARTSERVER 0x10000000 #define CLIENT_ALLREDRAWFLAGS \ (CLIENT_REDRAWWINDOW| \ CLIENT_REDRAWSTATUS| \ @@ -2202,7 +2204,7 @@ void server_clear_marked(void); int server_is_marked(struct session *, struct winlink *, struct window_pane *); int server_check_marked(void); -int server_start(struct tmuxproc *, struct event_base *, int, char *); +int server_start(struct tmuxproc *, int, struct event_base *, int, char *); void server_update_socket(void); void server_add_accept(int); |