0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 16:52:44 +01:00
construct/ircd
2020-10-24 06:26:38 -07:00
..
.gitignore
allocator.cc
allocator_gnu.cc
allocator_je.cc
assert.cc
b58.cc
b64.cc
backtrace.cc
cbor.cc
client.cc
conf.cc
crh.cc
ctx.cc ircd::ctx: Use vg::stack registration in stack allocator. 2020-10-16 14:32:06 -07:00
ctx.h ircd::ctx: Support user-supplied stacks. 2020-10-14 02:22:45 -07:00
ctx_eh.cc
ctx_ole.cc
ctx_posix.cc ircd::ctx::posix: Use non-dce'd debuglog for thread create. 2020-10-07 15:12:12 -07:00
ctx_x86_64.S
db.cc ircd::db: Optimize valid() for likely fast backward condition. 2020-10-12 18:47:24 -07:00
db.h ircd::db: Convert to jump complex due to random access penalties over rocksdb options struct. 2020-10-12 18:39:45 -07:00
db_allocator.cc ircd::vg: Add stack register/deregister to interface. 2020-10-16 14:32:06 -07:00
db_database.cc ircd::db::database::sst: Improve compression percentage related. 2020-10-14 21:07:03 -07:00
db_env.cc
db_env.h
db_env_state.h
db_fixes.cc
db_has.h
db_port.cc
db_port.h
demangle.cc
exception.cc ircd::exception: Fix inconsistent format string. 2020-10-24 01:59:11 -07:00
exec.cc ircd::exec: Set signal mask for the child process. 2020-10-24 06:26:38 -07:00
fmt.cc ircd::fmt: Relax string specifier grammar from printable to non-control. 2020-10-20 22:19:34 -07:00
fpe.cc
fs.cc ircd::fs: Add is_exec() to interface. 2020-10-20 23:20:41 -07:00
fs_aio.cc
fs_aio.h
fs_dev.cc
fs_iou.cc
fs_iou.h
fs_path.cc
globular.cc
http.cc
http2.cc
icu.cc
info.cc ircd::info: Add explicit compiler version in init infolog. 2020-10-17 16:50:31 -07:00
ios.cc
ircd.cc construct: Fix exception propagation; interrupt masking during runlevel change. 2020-10-17 16:01:36 -07:00
js.cc
json.cc ircd::json: Fix unadjusted serial size for object::member property names. 2020-10-20 23:20:41 -07:00
lex_cast.cc
logger.cc
magic.cc
magick.cc
Makefile.am ircd::proc: Add basic subprocess interface; ios integration. 2020-10-20 23:20:41 -07:00
mods.cc
mods.h
mods_ldso.cc
net.cc ircd::net: Fix canon string inconsistencies; perform service lookups. 2020-10-08 20:49:49 -07:00
net_addrs.cc
net_dns.cc
net_dns_cache.cc
net_dns_netdb.cc
net_dns_resolver.cc
net_listener.cc
net_listener_udp.cc
openssl.cc
parse.cc
pbc.cc
prof.cc
prof_linux.cc
rand.cc ircd::rand: Add vector convenience interface. 2020-10-07 03:08:28 -07:00
README.md
resource.cc ircd::resource: Strip both sides during params string assignment. 2020-10-16 02:40:39 -07:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd::rfc3986::decoder: Relax decode restriction to all non-control. 2020-10-20 22:19:34 -07:00
run.cc
server.cc ircd::server: Add asynchronous prelink() to interface. 2020-10-16 02:40:39 -07:00
simd.cc
sodium.cc
stats.cc
stringops.cc
sys.cc
timedate.cc
tokens.cc
utf.cc
util.cc
vg.cc ircd::vg: Add stack register/deregister to interface. 2020-10-16 14:32:06 -07:00

Library Definitions

This directory contains definitions for libircd

The purpose of libircd is to facilitate the execution of a server which handles requests from end-users. The library hosts a set of pluggable modules which may introduce the actual application features (or the "business logic") of the server.

Implied #include <ircd.h>

The ircd.h standard include group is pre-compiled and included first by default for every compilation unit in this directory. Developers do not have to worry about including project headers in a compilation unit, especially when creating and reorganizing either of them.

Note that because ircd.h is include above any manually included header, there is a theoretical possibility for a conflict. We make a serious effort to prevent ircd.h from introducing pollution outside of our very specific namespaces (see: Project Namespaces).

Dependency Isolation

Compilation units are primarily divided around the inclusion of a specific header or third-party dependency which is not involved in the ircd.h include group. Second to that, units tend to be divided by namespace and the subsystem they're implementing. Units can further be divided if they become unwieldy, but we bias toward large aggregate units in this library. Within these large units, there are divisions which group the definitions by the include/ircd/ header which declares them.

We do not included third-party headers in our own headers which are included by others. A developer of an ircd:: interface can choose to either forward declare third-party symbols in our headers, or wrap more complicated functionality.