summaryrefslogtreecommitdiff
path: root/ring.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights, authorsJune McEnroe2022-07-171-1/+1
|
* Avoid logging that a new consumer dropped messagesC. McEnroe2021-09-051-4/+6
| | | | | A new consumer is obviously expected to have dropped a huge number of messages.
* Use EX_USAGE for all local configuration errorsC. McEnroe2021-09-051-1/+1
|
* Declare producer staticC. McEnroe2021-08-281-1/+1
|
* Use uint64_t for save file signatureC. McEnroe2020-11-281-5/+7
| | | | This fixes building on 32-bit platforms.
* Say "OpenSSL" in additional permission noticesC. McEnroe2020-08-061-2/+2
| | | | LibreSSL is "a modified version of that library".
* Add additional permission for linking with LibreSSLC. McEnroe2020-06-081-0/+11
| | | | https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs
* Set consumer pos with CAP REQ causal.agency/consumer=nC. McEnroe2020-02-271-0/+5
| | | | | So the spec doesn't say I can use cap values in CAP REQ. But it also doesn't explicitly say I can't.
* Add causal.agency/consumer capabilityC. McEnroe2020-02-271-0/+5
|
* Save and load full struct timevalC. McEnroe2019-11-141-12/+27
|
* Use struct timeval for sub-second precisionC. McEnroe2019-11-141-9/+9
|
* Change license to GPLv3C. McEnroe2019-11-061-4/+4
| | | | | | | | | | | | | | > 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.
* Use explicit_bzero from LibreSSLC. McEnroe2019-11-061-2/+2
|
* Use explicit_bzero to clear passwordsCurtis McEnroe2019-10-311-2/+2
| | | | | GNU doesn't implement memset_s, but both FreeBSD and GNU implement explicit_bzero. Darwin doesn't, so #define it in terms of memset_s.
* Preserve consumers ptr in realloc failureCurtis McEnroe2019-10-301-3/+3
|
* Add option for ring sizeCurtis McEnroe2019-10-301-7/+29
|
* Warn when consumers drop messagesCurtis McEnroe2019-10-301-0/+4
|
* Allocate ring buffer at runtimeCurtis McEnroe2019-10-291-14/+22
|
* Add option to save and load ring contents across restartsCurtis McEnroe2019-10-281-0/+78
|
* Use "producer/consumer" consistently in ring codeCurtis McEnroe2019-10-281-26/+33
|
* Only increment consumer after successful sendCurtis McEnroe2019-10-271-2/+8
|
* Output ring info on SIGINFOCurtis McEnroe2019-10-271-0/+11
|
* Use produce/consume words for ring bufferCurtis McEnroe2019-10-251-11/+11
| | | | To disambiguate clientRecv and clientRead, say clientConsume.
* Implement ringDiff and ringReadCurtis McEnroe2019-10-251-14/+30
|
* Register readers by client usernamesCurtis McEnroe2019-10-241-0/+25
|
* Implement ringWriteCurtis McEnroe2019-10-241-0/+40