From 26db6e6c10bbba2796f09ebce50620b03bebabd5 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 3 Dec 2018 00:08:24 -0500 Subject: Ignore ~ username prefixes This simplifies a lot. --- irc.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'irc.c') diff --git a/irc.c b/irc.c index 9ac8827..81c3f9a 100644 --- a/irc.c +++ b/irc.c @@ -95,9 +95,6 @@ int ircConnect(void) { ); } - /// FIXME - if (self.user[0] == '~') selfUser(&self.user[1]); - if (self.pass) ircFmt("PASS :%s\r\n", self.pass); ircFmt("NICK %s\r\n", self.nick); ircFmt("USER %s 0 * :%s\r\n", self.user, self.real); -- cgit 1.4.0 value='d312bbc4a659c4231d6731216aa9f34ad1d77dda'>this commit IRC bouncer
summary refs log tree commit diff
path: root/state.c (unfollow)
Commit message (Expand)Author
2019-10-23Track own originJune McEnroe
2019-10-23Track channels and sync ISUPPORTJune McEnroe
2019-10-23Track nick changesJune McEnroe
2019-10-23Rename Command to MessageJune McEnroe
2019-10-23Synchronize state after client registrationJune McEnroe
2019-10-23Send to server if client has no needsJune McEnroe
2019-10-23Implement some amount of client connectionJune McEnroe
2019-10-23Set clients non-blockingJune McEnroe
2019-10-23Clean up state.c and factor out parsingJune McEnroe
2019-10-23Respond to pingsJune McEnroe
2019-10-23Add verbose flagJune McEnroe
2019-10-23Set NOSIGPIPE on server connectionJune McEnroe
2019-10-23Set an initial loop capJune McEnroe
2019-10-23Fix rest parsingJune McEnroe
2019-10-23Add dynamic poll listJune McEnroe
2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe
2019-10-23Clean up state somewhatJune McEnroe
2019-10-23Actually send the buffer...June McEnroe
2019-10-23Add stateJune McEnroe