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
/
sockets.c
Age
Commit message (
Expand
)
Author
2023-03-23
Don't try to sockread() or socksend() if the file descriptor is NULL, assume ...
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
Have openssl_accept return 0 if fd_toggle_blocking failed.
Luke Bratch
2019-09-15
Use global signal(SIGPIPE, SIG_IGN) instead of the send() flag MSG_NOSIGNAL s...
Luke Bratch
2019-09-15
Set the MSG_NOSIGNAL flag send send()ing so a bad socket write doesn't termin...
Luke Bratch
2019-07-09
Change some SSL_accept() debug output to be DEBUG_FULL instead of DEBUG_CRIT.
Luke Bratch
2019-07-09
Avoid SSL_accept() blocking if the client fails to do TLS negotiation.
Luke Bratch
2019-06-16
Log OpenSSL errors properly instead of printing to stderr.
Luke Bratch
2019-06-12
Handle failing to connect to the server on startup.
Luke Bratch
2019-06-10
Add copyright and GPL 3 notices.
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-27
Make debug output optional and disabled by default.
Luke Bratch
2019-05-19
Add some help output if certificate or key files are missing.
Luke Bratch
2019-05-13
Implement optional TLS for the server side.
Luke Bratch
2019-05-12
Make using TLS for clients connecting to the bouncer optional.
Luke Bratch
2019-05-12
Make certificate and key file paths configurable.
Luke Bratch
2019-05-12
Make client port configurable and move settings structure to be initialised i...
Luke Bratch
2019-05-12
Implement TLS using OpenSSL.
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