about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-02 23:08:49 -0500
committerJune McEnroe <june@causal.agency>2018-12-02 23:08:49 -0500
commit0e1297e068258baba6e26265d81b93bda71be8b2 (patch)
treed0e953245129e195fe59f14fe6d12f9a92365efc /chat.h
parentSend automated messages to TagStatus with UICold (diff)
downloadcatgirl-0e1297e068258baba6e26265d81b93bda71be8b2.tar.gz
catgirl-0e1297e068258baba6e26265d81b93bda71be8b2.zip
Add -r option for realname
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.h b/chat.h
index abbb050..31b31a2 100644
--- a/chat.h
+++ b/chat.h
@@ -31,8 +31,10 @@
 #define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0)
 
 struct {
+	char *port;
 	char *nick;
 	char *user;
+	char *real;
 	char *join;
 	bool verbose;
 	bool notify;
@@ -40,7 +42,6 @@ struct {
 
 void selfNick(const char *nick);
 void selfUser(const char *user);
-void selfJoin(const char *join);
 
 void eventWait(const char *argv[static 2]);
 void eventPipe(const char *argv[static 2]);