about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-22 14:32:20 -0400
committerJune McEnroe <june@causal.agency>2020-03-22 14:32:20 -0400
commiteb6316c2352f0b50db4167f66528dfaee396f0ff (patch)
treedb714261a1f81c43298020260f565944988df1c2 /chat.h
parentAdd /say (diff)
downloadcatgirl-eb6316c2352f0b50db4167f66528dfaee396f0ff.tar.gz
catgirl-eb6316c2352f0b50db4167f66528dfaee396f0ff.zip
Track own host, handle CHGHOST
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h2
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;