index
:
blabouncer
master
An IRC bouncer written in C
Luke Bratch <luke@bratch.co.uk>
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
functions.c
Age
Commit message (
Expand
)
Author
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
2019-05-18
Add underflow safety check in appendcrlf().
Luke Bratch
2019-05-17
Properly support changing our nick while connecting by updating it everywhere...
Luke Bratch
2019-05-16
Correctly handle nicks changing and actually track users PARTing channels.
Luke Bratch
2019-05-12
Make configuration file path configurable on the command line. Also finish r...
Luke Bratch
2019-05-12
Completely rewrite configuration file reading to remove lots of duplicated co...
Luke Bratch
2019-05-08
Make TOPIC tracking/following/setting/etc. work for most/all scenarios and en...
Luke Bratch
2019-04-21
Fix appendcrlf() to strip both CR and LF, fixes mysterious newlines in PRIVMSGs
Luke Bratch
2019-04-20
We are bouncing! You can now:
Luke Bratch
2019-04-19
Lots and lots of refactoring and comments work in preparation for more actual...
Luke Bratch
2019-04-18
Split functions into different files
Luke Bratch