0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-04 17:48:35 +02:00
construct/rb
Aaron Jones b17925378a
TLS Backends: Harmomise the rb_ssl_get_cipher() function
The GNUTLS backend reports the version in use for the client as well
as its ciphersuite -- do the same for the other 2 backends.
2016-08-20 04:18:23 +01:00
..
arc4random.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
balloc.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
commio.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
crypt.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
devpoll.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
dictionary.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
epoll.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
event.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
export-syms.txt Refactor repository layout. 2016-07-21 20:51:02 -07:00
format.cc rb: import formatter library 2016-07-31 17:55:43 -05:00
gnutls.c GNUTLS: Avoid null dereference in constructing ciphersuite 2016-08-19 20:29:49 +00:00
helper.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
kqueue.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
linebuf.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
Makefile.am rb: remove export-syms.txt for now 2016-07-31 18:06:26 -05:00
mbedtls.c TLS Backends: Harmomise the rb_ssl_get_cipher() function 2016-08-20 04:18:23 +01:00
mbedtls_embedded_data.h Refactor repository layout. 2016-07-21 20:51:02 -07:00
nossl.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
openssl.c TLS Backends: Harmomise the rb_ssl_get_cipher() function 2016-08-20 04:18:23 +01:00
patricia.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
poll.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
ports.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
radixtree.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
rawbuf.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
rb.cc Convert IRCd to C++ 2016-07-22 19:46:27 -07:00
README.md Refactor repository layout. 2016-07-21 20:51:02 -07:00
select.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
sigio.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
terminate.cc Convert IRCd to C++ 2016-07-22 19:46:27 -07:00
tools.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
unix.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
version.c Refactor repository layout. 2016-07-21 20:51:02 -07:00
win32.c Refactor repository layout. 2016-07-21 20:51:02 -07:00

librb

This is based on libratbox, the common runtime support code in ircd-ratbox. It has significant modifications and is no longer compatible with libratbox itself (nor can be used as a dropin replacement), so we renamed it.

original libratbox notes

  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.