ircd-ratbox/ircd-ratbox-3.0.10/libratbox
2023-08-20 13:26:10 -04:00
..
include Initial commit 2023-08-20 13:26:10 -04:00
src Initial commit 2023-08-20 13:26:10 -04:00
.indent.pro Initial commit 2023-08-20 13:26:10 -04:00
acinclude.m4 Initial commit 2023-08-20 13:26:10 -04:00
aclocal.m4 Initial commit 2023-08-20 13:26:10 -04:00
ChangeLog Initial commit 2023-08-20 13:26:10 -04:00
compile Initial commit 2023-08-20 13:26:10 -04:00
config.guess Initial commit 2023-08-20 13:26:10 -04:00
config.sub Initial commit 2023-08-20 13:26:10 -04:00
configure Initial commit 2023-08-20 13:26:10 -04:00
configure.ac Initial commit 2023-08-20 13:26:10 -04:00
COPYING Initial commit 2023-08-20 13:26:10 -04:00
CREDITS Initial commit 2023-08-20 13:26:10 -04:00
depcomp Initial commit 2023-08-20 13:26:10 -04:00
INSTALL Initial commit 2023-08-20 13:26:10 -04:00
install-sh Initial commit 2023-08-20 13:26:10 -04:00
ltmain.sh Initial commit 2023-08-20 13:26:10 -04:00
Makefile.am Initial commit 2023-08-20 13:26:10 -04:00
Makefile.in Initial commit 2023-08-20 13:26:10 -04:00
missing Initial commit 2023-08-20 13:26:10 -04:00
README Initial commit 2023-08-20 13:26:10 -04:00
TODO Initial commit 2023-08-20 13:26:10 -04:00

This is libircd from ircd-ratbox.  A few notes about this library:

1. Most of this code isn't anywhere near threadsafe at this point.  Don't
   hold your breath on this either.
2. The linebuf code is designed to deal with pretty much 512 bytes per line
   and that is it.  Anything beyond that length unless in raw mode, gets
   discard.  For some non-irc purposes, this can be a problem, but for
   ircd stuff its fine.
3. The helper code when transmitting data between helpers, the same 512 byte
   limit applies there as we recycle the linebuf code for this.