Age | Commit message (Expand) | Author |
2022-11-25 | Fix broken debugprint() call in isnickinanychannel() which was referencing a ... | Luke Bratch |
2022-11-25 | Implement fake QUIT handling via a NOTICE when doing a replay. | Luke Bratch |
2022-11-24 | Fix replaymode = "lastspoke" by using line numbers rather than time to calcul... | Luke Bratch |
2022-11-23 | Correct comments in functions.c. | Luke Bratch |
2022-09-02 | Deal with servers only sending a nick rather than nick!user@host as the last ... | Luke Bratch |
2022-09-02 | Improve comment/debug clarity. | Luke Bratch |
2021-01-25 | Use a space followed by a colon to determine the final parameter in extractfi... | Luke Bratch |
2021-01-19 | Fix various issues where strncmp was only comparing a substring. | Luke Bratch |
2021-01-18 | Make the "channels" configuration file entry an array. | Luke Bratch |
2020-10-21 | Don't have arrindex() return 0 on failure as 0 is a valid index. Instead ret... | Luke Bratch |
2020-01-05 | Fix some situations where the remote IP of a connecting/disconnecting client ... | Luke Bratch |
2020-01-05 | Correct a comment. | Luke Bratch |
2019-12-22 | Significantly reduce memory usage by only initialising channel struct element... | Luke Bratch |
2019-12-22 | Make full debug output optional for extractnickfromprefix() and stripprefix()... | Luke Bratch |
2019-10-02 | Try to make removenickfromallchannels() much faster when another user QUITs b... | Luke Bratch |
2019-09-16 | Make all log filenames lowercase - since IRC nicks and channel names are case... | Luke Bratch |
2019-09-15 | Make sure nicks passed to the "update all channels" functions have non-zero l... | Luke Bratch |
2019-09-15 | Don't try to socksend() in sendtoclient() if the client wasn't found in the c... | Luke Bratch |
2019-09-15 | Start tracking nicks in channels (upon JOIN/PART/QUIT/NICK) and use that to c... | Luke Bratch |
2019-09-14 | Specify multiple nicks using a configuration array instead of multiple indivi... | Luke Bratch |
2019-09-14 | Handle ignoring replay messages from before we launched better to avoid misle... | Luke Bratch |
2019-09-07 | Avoid more replay log NICK synchronisation issues by ignoring replay log nick... | Luke Bratch |
2019-09-07 | Add a configuration option to include the date in the timestamp when replayin... | Luke Bratch |
2019-09-06 | Send remote IP addresses instead of fd numbers in NOTICEs to clients and prin... | Luke Bratch |
2019-07-18 | Fix compiler warnings emitted by Clang/LLVM and some older GCC versions. | Luke Bratch |
2019-07-10 | Fix some potential buffer overflows when sending to client/server. | Luke Bratch |
2019-07-10 | Ensure log filenames are safe for writing. | Luke Bratch |
2019-07-10 | Make setting configuration option "replayseconds" optional if "replaymode" !=... | Luke Bratch |
2019-07-09 | Make sure debug lines printed to file end with a trailing newline. | Luke Bratch |
2019-07-09 | Avoid SSL_accept() blocking if the client fails to do TLS negotiation. | Luke Bratch |
2019-06-17 | Implement a per-client identifier so auto replay can replay everything a give... | Luke Bratch |
2019-06-16 | Correctly return success when handling new replay modes. | Luke Bratch |
2019-06-16 | Implement two new auto replay modes: | Luke Bratch |
2019-06-16 | Handle very long lines and very short lines. Print to terminal if we fail to... | Luke Bratch |
2019-06-16 | Load all settings from configuration file at startup instead of reading it fo... | Luke Bratch |
2019-06-12 | Allow reloading the configuration file at runtime using a BLABOUNCER command ... | Luke Bratch |
2019-06-12 | Don't print a message to the terminal when a channel already exists (it is a ... | Luke Bratch |
2019-06-11 | Implement configurable auto replay modes. So far there is "none", "time" (au... | Luke Bratch |
2019-06-11 | Refactoring - rename ircdstrings struct to ircdstate since it doesn't just co... | Luke Bratch |
2019-06-11 | Prepend timestamps when writing to the debug log file. | Luke Bratch |
2019-06-10 | Refactoring - split giant processircmessage() switch statement into separate ... | Luke Bratch |
2019-06-10 | Refactoring - move most functions into functions.h/functions.c except connect... | Luke Bratch |
2019-06-10 | Add copyright and GPL 3 notices. | Luke Bratch |
2019-06-01 | Put debug logs in subdirectory and have max number to keep be configurable. ... | Luke Bratch |
2019-05-30 | Remove most (all?) exit()s with error handling without exiting where possible... | Luke Bratch |
2019-05-30 | Convert debugprint() from being to file/screen/disabled to always being to fi... | Luke Bratch |
2019-05-28 | Implement debugging to file and set the default configuration file to be that. | Luke Bratch |
2019-05-27 | Make debug output optional and disabled by default. | Luke Bratch |
2019-05-27 | Only compare nick instead of full nick!user@host when processing server JOIN/... | Luke Bratch |
2019-05-21 | Support multiple nick prefixes in channels by storing/relaying server 005/RPL... | Luke Bratch |