diff options
author | June McEnroe <june@causal.agency> | 2018-08-09 18:26:53 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-09 18:26:53 -0400 |
commit | d1fea96e8632b92f561420eaff9468fcd846d297 (patch) | |
tree | 81a11b733fac9f67f63acab22e68425fa61e8c6c /chat.h | |
parent | Ignore trailing space on slash commands (diff) | |
download | catgirl-d1fea96e8632b92f561420eaff9468fcd846d297.tar.gz catgirl-d1fea96e8632b92f561420eaff9468fcd846d297.zip |
Add PASS option
WEBIRC is now -W.
Diffstat (limited to '')
-rw-r--r-- | chat.h | 4 |
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); |