about summary refs log tree commit diff
path: root/chat.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-09 18:26:53 -0400
committerJune McEnroe <june@causal.agency>2018-08-09 18:26:53 -0400
commitd1fea96e8632b92f561420eaff9468fcd846d297 (patch)
tree81a11b733fac9f67f63acab22e68425fa61e8c6c /chat.h
parentIgnore trailing space on slash commands (diff)
downloadcatgirl-d1fea96e8632b92f561420eaff9468fcd846d297.tar.gz
catgirl-d1fea96e8632b92f561420eaff9468fcd846d297.zip
Add PASS option
WEBIRC is now -W.
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chat.h b/chat.h
index 3a84b6c..af13410 100644
--- a/chat.h
+++ b/chat.h
@@ -41,7 +41,9 @@ enum {
 	IRC_UNDERLINE = 037,
 };
 
-int ircConnect(const char *host, const char *port, const char *webPass);
+int ircConnect(
+	const char *host, const char *port, const char *pass, const char *webPass
+);
 void ircRead(void);
 void ircWrite(const char *ptr, size_t len);