summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Filter invite-notifyC. McEnroe2019-11-104-11/+23
|
* Add capsicum note to READMEC. McEnroe2019-11-101-3/+12
|
* Filter extended-joinC. McEnroe2019-11-103-1/+16
|
* Expand client configuration documentation and list capabilitiesC. McEnroe2019-11-101-2/+38
|
* Request all supported caps from serverC. McEnroe2019-11-101-2/+9
|
* Filter ACCOUNT, AWAY, CHGHOST for incapable clientsC. McEnroe2019-11-101-0/+42
|
* Rename listen to localC. McEnroe2019-11-105-22/+22
|
* Remove extended-join and invite-notifyC. McEnroe2019-11-091-2/+0
| | | | | | | | | | | | The remaining caps only generate new commands which can easily be filtered out when sending to clients so will be in the first pass of support. extended-join is probably safe to pass through unaltered, just causing extraneous parameters on JOIN commands, but maybe not. invite-notify reuses the INVITE command where the invited user is not self.
* Maintain stateCaps and offer them to clientsC. McEnroe2019-11-093-9/+17
|
* Parse capabilitiesC. McEnroe2019-11-092-9/+64
| | | | | | The list that I've defined are the ones that I expect to be able to enable probably without any clients breaking... And of course server-time which pounce implements itself.
* Avoid the reserved _A names with BIT macroC. McEnroe2019-11-091-1/+1
|
* Define macro for bit flag enumsC. McEnroe2019-11-092-4/+5
|
* Check that password is hashedC. McEnroe2019-11-081-0/+3
|
* Avoid calling getopt_long again after it returns -1C. McEnroe2019-11-081-1/+4
| | | | | | On GNU, calling getopt_long again will reset optind back to the first non-option argument, which would cause an infinite loop of reading the same configurtion file forever.
* Only change AWAY status for registered clientsC. McEnroe2019-11-083-7/+13
| | | | | | Turns out I did eventually fix this, because I may want to implement "passive clients" for logging or notification stuff, which wouldn't affect AWAY status either.
* Just write the example normallyC. McEnroe2019-11-071-1/+1
|
* Include path in readlinkat errorC. McEnroe2019-11-071-1/+1
|
* Call clientConsume before clientRecvC. McEnroe2019-11-071-1/+1
| | | | | This might reduce the frequency of a client getting its own message back because it was behind in the ring when it sent it.
* Use -l:filename in Linux.mkC. McEnroe2019-11-061-4/+1
|
* Fix compat.h for #defined strlcpyC. McEnroe2019-11-061-0/+2
|
* Allow unsetting LIBRESSL_PREFIXC. McEnroe2019-11-061-2/+2
|
* Document calico service configurationC. McEnroe2019-11-062-4/+36
|
* Document SASL EXTERNAL configuration in more detailC. McEnroe2019-11-061-0/+32
|
* Document pounce service configurationC. McEnroe2019-11-061-2/+61
|
* Mention Darwin and GNU/Linux in READMEC. McEnroe2019-11-061-4/+6
|
* Assume LibreSSL from brew on DarwinC. McEnroe2019-11-061-0/+1
|
* Remove -DNO_EXPLICIT_BZERO from Darwin.mkC. McEnroe2019-11-061-1/+0
|
* Don't install rc scripts or dirs on LinuxC. McEnroe2019-11-062-4/+10
|
* Add Linux.mkC. McEnroe2019-11-061-0/+5
|
* Use #defines for constant stringsC. McEnroe2019-11-063-11/+11
| | | | | GCC hates declaring static consts in headers and not using them, for some stupid reason.
* Declare more missing functions and deal with lack of SO_NOSIGPIPEC. McEnroe2019-11-064-4/+14
|
* Define one CERTBOT_PATH rather than two format stringsC. McEnroe2019-11-062-8/+10
|
* Change license to GPLv3C. McEnroe2019-11-0611-111/+124
| | | | | | | | | | | | | | > Notwithstanding any other provision of this License, if you modify the > Program, your modified version must prominently offer all users > interacting with it remotely through a computer network (if your version > supports such interaction) an opportunity to receive the Corresponding > Source of your version by providing access to the Corresponding Source > from a network server at no charge, through some standard or customary > means of facilitating copying of software. This potentially means that every freenode user, for example, is interacting with this software, and offering the corresponding source to each of them is an unreasonable burden.
* Add flag to generate a client certificateC. McEnroe2019-11-062-2/+31
| | | | | This is essentially the command freenode tells you to run: <https://freenode.net/kb/answer/certfp>.
* Give SYNOPSIS Ars more informative namesC. McEnroe2019-11-061-9/+9
|
* Expand SASL EXTERNAL documentationC. McEnroe2019-11-061-12/+16
|
* Use explicit_bzero from LibreSSLC. McEnroe2019-11-0612-22/+55
|
* Clean up bounce.cC. McEnroe2019-11-051-88/+87
|
* Use "priv" instead of "key" in optionsC. McEnroe2019-11-052-5/+5
| | | | Let all words be four letter words.
* Use arc4random_bufC. McEnroe2019-11-051-3/+1
|
* Add missing includeC. McEnroe2019-11-051-0/+1
|
* Use one call to set client cert and keyC. McEnroe2019-11-051-13/+2
|
* Implement SASL EXTERNALC. McEnroe2019-11-054-27/+40
|
* Add options for TLS client certificateC. McEnroe2019-11-044-9/+58
|
* Zero PASS parameterC. McEnroe2019-11-042-4/+6
|
* Don't set directory modes on installC. McEnroe2019-11-041-1/+1
|
* Hash client passwords with cryptC. McEnroe2019-11-046-14/+41
|
* Move base64 to bounce.hC. McEnroe2019-11-042-32/+35
|
* Rename bind-unix to bind-pathC. McEnroe2019-11-032-2/+2
|
* Append bindHost to bindPath if it is a directoryC. McEnroe2019-11-032-5/+22
|