Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-03 | Increase maximum auto join channels from 10 to 40, correctly check for ↵ | Luke Bratch | |
maximum configuration array length, correct configuration array debug output text. | |||
2021-01-18 | Make the "channels" configuration file entry an array. | Luke Bratch | |
2019-12-22 | Significantly reduce memory usage by only initialising channel struct ↵ | Luke Bratch | |
elements when they are used for the first time. | |||
2019-10-02 | Various typo fixes. | Luke Bratch | |
2019-09-15 | Start tracking nicks in channels (upon JOIN/PART/QUIT/NICK) and use that to ↵ | Luke Bratch | |
correctly log QUITs in the replay log and normal log(s). | |||
2019-09-14 | Specify multiple nicks using a configuration array instead of multiple ↵ | Luke Bratch | |
individual settings. | |||
2019-09-14 | Implement arrays in the configuration file and start using them to allow for ↵ | Luke Bratch | |
multiple connect commands. | |||
2019-09-07 | Avoid more replay log NICK synchronisation issues by ignoring replay log ↵ | Luke Bratch | |
nick changes from us if not our current nick, and by completely ignoring replaying any type of replay log line from before blabouncer was launched. | |||
2019-09-07 | Add a configuration option to include the date in the timestamp when ↵ | Luke Bratch | |
replaying the replay log. | |||
2019-09-06 | Send remote IP addresses instead of fd numbers in NOTICEs to clients and ↵ | Luke Bratch | |
print both in related debugprint()s. | |||
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 ↵ | Luke Bratch | |
given client has missed. | |||
2019-06-16 | Implement two new auto replay modes: | Luke Bratch | |
- replaymode = "noclients": All messages since the bouncer last had no clients connected - replaymode = "lastchange": All messages since the last client connect or disconnect | |||
2019-06-16 | Load all settings from configuration file at startup instead of reading it ↵ | Luke Bratch | |
for certain settings (password/nick/nick2/nick3). | |||
2019-06-11 | Implement configurable auto replay modes. So far there is "none", "time" ↵ | Luke Bratch | |
(auto replay the last X seconds), and "lastspoke" (auto replay everything since you last spoke). | |||
2019-06-11 | Refactoring - rename ircdstrings struct to ircdstate since it doesn't just ↵ | Luke Bratch | |
contain strings. | |||
2019-06-11 | Send a PING to the server before assuming a timeout is definite. | Luke Bratch | |
2019-06-10 | Add copyright and GPL 3 notices to structures.h. | Luke Bratch | |
2019-06-10 | Refactoring - move structs into a separate file structures.h. | Luke Bratch | |