Add a helper function to send ready message.

This commit is contained in:
Nicholas Marriott
2012-05-22 10:56:48 +00:00
parent 82b053a811
commit 682884edc5
4 changed files with 9 additions and 2 deletions

View File

@ -46,6 +46,12 @@ server_fill_environ(struct session *s, struct environ *env)
environ_set(env, "TMUX", var);
}
void
server_write_ready(struct client *c)
{
server_write_client(c, MSG_READY, NULL, 0);
}
int
server_write_client(
struct client *c, enum msgtype type, const void *buf, size_t len)