diff options
author | June McEnroe <june@causal.agency> | 2019-10-26 02:10:03 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-26 02:10:03 -0400 |
commit | d95af1b6e0d07343049bec988e57b13173d472b9 (patch) | |
tree | 142d3660fce36d370c54e74cd158578a1921c116 /bounce.h | |
parent | Oops (diff) | |
download | pounce-d95af1b6e0d07343049bec988e57b13173d472b9.tar.gz pounce-d95af1b6e0d07343049bec988e57b13173d472b9.zip |
Add flags to request TOPIC and NAMES on client connect
Diffstat (limited to '')
-rw-r--r-- | bounce.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bounce.h b/bounce.h index 69ba51d..4945931 100644 --- a/bounce.h +++ b/bounce.h @@ -87,6 +87,8 @@ void clientFormat(struct Client *client, const char *format, ...) size_t clientDiff(const struct Client *client); void clientConsume(struct Client *client); +bool stateJoinNames; +bool stateJoinTopic; bool stateReady(void); void stateParse(char *line); void stateSync(struct Client *client); |