diff options
author | June McEnroe <june@causal.agency> | 2019-11-08 17:25:48 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-08 17:25:48 -0500 |
commit | da2643bc8039de811b4b0e5e1ce367e9236153cd (patch) | |
tree | 816909e0adcfcb9542c18d341b3b0275a26371a3 /bounce.h | |
parent | Just write the example normally (diff) | |
download | pounce-da2643bc8039de811b4b0e5e1ce367e9236153cd.tar.gz pounce-da2643bc8039de811b4b0e5e1ce367e9236153cd.zip |
Only change AWAY status for registered clients
Turns out I did eventually fix this, because I may want to implement "passive clients" for logging or notification stuff, which wouldn't affect AWAY status either.
Diffstat (limited to '')
-rw-r--r-- | bounce.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bounce.h b/bounce.h index 08313d5..2c997c3 100644 --- a/bounce.h +++ b/bounce.h @@ -80,6 +80,7 @@ void serverFormat(const char *format, ...) __attribute__((format(printf, 1, 2))); char *clientPass; +char *clientAway; struct Client *clientAlloc(struct tls *tls); void clientFree(struct Client *client); bool clientError(const struct Client *client); |