diff options
author | June McEnroe <june@causal.agency> | 2020-03-22 14:32:20 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-22 14:32:20 -0400 |
commit | eb6316c2352f0b50db4167f66528dfaee396f0ff (patch) | |
tree | db714261a1f81c43298020260f565944988df1c2 /chat.h | |
parent | Add /say (diff) | |
download | catgirl-eb6316c2352f0b50db4167f66528dfaee396f0ff.tar.gz catgirl-eb6316c2352f0b50db4167f66528dfaee396f0ff.zip |
Track own host, handle CHGHOST
Diffstat (limited to '')
-rw-r--r-- | chat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chat.h b/chat.h index 91d175f..468d864 100644 --- a/chat.h +++ b/chat.h @@ -97,6 +97,7 @@ extern struct Network { #define ENUM_CAP \ X("causal.agency/consumer", CapConsumer) \ + X("chghost", CapChghost) \ X("extended-join", CapExtendedJoin) \ X("invite-notify", CapInviteNotify) \ X("multi-prefix", CapMultiPrefix) \ @@ -119,6 +120,7 @@ extern struct Self { char *join; char *nick; char *user; + char *host; enum Color color; char *quit; } self; |