summaryrefslogtreecommitdiff
path: root/src/irc
AgeCommit message (Collapse)Author
2006-03-25prefixed all calls to rand() with a call to srand(time(NULL)), so we getJochen Eisinger
halfway random behaviour. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4263 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-03-01Ignore joins without a nick from broken serversWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4248 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-02-17leave parameter count check as it was beforeValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4245 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-02-17check the paramcount for DCC RESUME more strictlyValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4244 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-01-30Only send QUOTE immediately when server didn't yet sent the 001 eventValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4230 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-01-28If dcc_own_ip contains IPv4 address, listen only in IPv4.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4228 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-01-26changed /QUOTE to be sent immediately, since the queueing was changed, it's ↵Valentin Batz
not possible to do things like /quote PONG :cookie before event 001 has been received (required on some EFNet servers when you haven't got an identd) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4225 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-01-17fix segfault on /quit by using a linked list node after freeing it (by ↵Wouter Coekaerts
Chris Moore) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4202 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-11-24Initialize the isupport functions on /upgrade aswellValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4096 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-11-02Don't crash if receiving broken privmsg without source (which bitlbee can ↵Wouter Coekaerts
send if you msg yourself) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4062 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-10-18Fix crash on netsplit+join after /upgrade from 0.8.9Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4047 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-10-10Make the compiler happy by replacing 'const char *' by 'char *'.Valentin Batz
Pass the pointer to the SERVER_REC to dcc_ctcp_message. Recode 'own' messages back for printing just before they actually get printed. (ugly but more effective than adding all the signals in fe-recode and doing it there) Replaced SERVER_REC by IRC_SERVER_REC in dcc-chat.c since it's belongs to IRC(makes the compiler happy again). git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4034 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-09-10don't crash if server sends weird NICK line, patch by Jarno Honkanen (Bug 216)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3992 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-09-10- rename "whois not found" to "whois try whowas", because that's what needs ↵Wouter Coekaerts
to be done when the signal is sent (and it doesn't mean whois_not_found should be printed) - rename "whois event noserver" to "whois event not found", because the signal means the nickname wasn't found (but it comes as a "no such server" because it was a /whois nick nick), whois_not_found should be printed, and so it makes sense to also use it for the next fix: - send "whois event not found" for 401, when auto_whowas is off, so the message is displayed correctly (Bug 295) - handle 402 the same with auto_whowas off as with on, (fixes /whois with not existing server specified, with auto_whowas off). - and since the auto_whowas on and off cases are similar now, merge them together, so they stay consistent. - pass every argument given to /whowas to the server, not just the first (count). Fixes remote whowas (Bug 256) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3988 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-08-24moved the _NET_SENDBUF_REC definition out of core/net-sendbuffer.c and ↵Valentin Batz
irc/proxy/listen.c into core/net-sendbuffer.h git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3948 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-08-24replaced net_transmit by net_sendbuffer_send in the irssi-proxy module, ↵Valentin Batz
there were no checks if the buffer was sent completely with net_transmit git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3947 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-08-15Fix notify with more nicks than max_whois_in_cmd (Bug 257), based on patch ↵Wouter Coekaerts
by Krzysztof Kowalik (Borys) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3932 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-08-01Fix dcc resume crash (only in the rc's and svn) (Bug 287)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3895 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-06-24Fix server->last_nick leak by Toby (Bug 267)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3794 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-05-14Fixed a bug with isupport, after an upgrade from 0.8.9 prefix very well can ↵Valentin Batz
be NULL, so check for it git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3750 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-05-11Fixed a bug where the channel list to join/rejoin on reconnect gets too ↵Valentin Batz
long, not all channels will be joined. The channel list is splitted into multiple lines right now when it's too long. (http://bugs.irssi.org/index.php?id=108&do=details) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3746 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-04-26Remember alternate_nick and max_whois on reconnect (Bug 181)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3727 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-03-07Don't use a retarted ip for passive DCCWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3722 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-03-06Fix memleak in /UNBAN, by Toby Peterson (Bug 215)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3717 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-03-06Fix memleak in dcc get, by Toby Peterson (Bug 214)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3716 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-03-06Fix memleak in several commands that used cmd_return_error when they should ↵Wouter Coekaerts
be using cmd_param_error, by Toby Peterson (Bug 213) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3715 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-03-06Add libtool's -module flag to get built properly on all platforms, by Toby ↵Wouter Coekaerts
Peterson (Bug 212) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3714 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-02-11Fixed output of /hilight (add a space after -levels if any).Valentin Batz
Added recode to dcc-chat, patch by Jean-Yves Lefort git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3708 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-02-06Fixed memory leaks when destroying a channel, when loading nonexisten ↵Valentin Batz
scripts and in topics, patch by Toby Peterson git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3707 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-02-04Compile fix: make it c99 again, by Timothy Hatcher (Bug 184)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3705 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-02-03Update our own nickrec->gone flag on /away <reason> or on /awayValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3704 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-01-03improve queuing commands, patch by Timothy Hatcher (Bug 168)Wouter Coekaerts
(patch changed so it doesn't wait one second after the 001 event) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3698 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-01-03Fix multiple entries for local IP in /etc/hosts prevents connecting, patch ↵Wouter Coekaerts
by eridius (Bug 167) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3697 dbcabf3a-b0e7-0310-adc4-f8d773084564
2005-01-03"ban remove" signal should pass who removed it, patch by Timothy Hatcher ↵Wouter Coekaerts
(Bug 166) added it to docs/signals.txt too git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3696 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-12-20Added <tag>/<target> support for recode.Valentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3692 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-12-07Fixed a memleak, when using recode_out you have too free the memory it ↵Valentin Batz
allocates for you. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3691 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-12-07If available, send who set topic and when to irssi-proxy clientsWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3690 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-11-23Reverting bugfix for 'usermode activates after autosendcmd' because it ↵Valentin Batz
breaks usermode for reconnections git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3684 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-11-19Fixed bug where usermode was not sent correctlyValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3681 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-14Fixed bug 120 where proxy doesn't set the server_rec->away_reasonValentin Batz
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3319 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-12Fix crash with non-irc serversWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3318 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-10Also remember other (not k or l) modes with argumentsWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3316 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-10Remember key not only with channel->key, but also in channel->mode (in the ↵Wouter Coekaerts
statusbar) on key-hiding-servers, like before isupport git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3315 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-08add d,q,f and J to CHANMODES default, to work a bit better with dancer and ↵Wouter Coekaerts
possibly others (Dear irc server coder, please send isupport with CHANMODES, thank you) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3313 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-10-05Fix own nick changes in irssi-proxyWouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3308 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-09-18Fixed /KNOCK support.Geert Hauwaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3305 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-09-15Bugfix: http://bugs.irssi.org/?do=details&id=121Geert Hauwaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3299 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-09-12Fix /WHOIS -yes (Bug 67)Wouter Coekaerts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3291 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-09-12Recent WHOIS changes broke nick's gone/oper flags. Patch by Valentin BatzTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3290 dbcabf3a-b0e7-0310-adc4-f8d773084564
2004-08-31send max 15 005 parameters at once. Patch by Valentin BatzTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3288 dbcabf3a-b0e7-0310-adc4-f8d773084564