0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 16:34:13 +01:00
construct/ircd
2018-12-26 15:49:08 -08:00
..
m ircd:Ⓜ️🆔 De-template grammars and assume iterator type; minor fixes. 2018-12-21 13:55:11 -08:00
.gitignore
aio.cc ircd::fs: Add a nodelay option on reads. 2018-12-26 15:42:23 -08:00
aio.h ircd::aio: Add a reference to the fs opts structure for the request. 2018-12-26 15:40:22 -08:00
allocator.cc
ap.cc
base.cc
cbor.cc
client.cc ircd::client: Improve log message. 2018-12-19 17:06:30 -08:00
conf.cc
crh.cc
ctx.cc ircd::ctx: Add pool::min() convenience. 2018-12-24 16:20:03 -08:00
ctx.h ircd::ctx: Improve prof related; add full ticker of counters. 2018-12-22 15:17:18 -08:00
db.cc ircd::db: Enrich seek(row) opts; add proper error handling and propagation. 2018-12-24 14:33:35 -08:00
db.h ircd::db: Add reflections for compaction and flush reasons. 2018-12-19 13:39:06 -08:00
demangle.cc
exception.cc
fmt.cc
fpe.cc ircd::fpe: Use std noreturn here. 2018-12-21 17:19:16 -08:00
fs.cc ircd::fs: Prevent ODR warnings from these weak defs. 2018-12-26 15:49:08 -08:00
http.cc ircd::http: De-template grammar and assume iterator type. 2018-12-21 13:56:20 -08:00
info.cc ircd::info: Reorganize info. 2018-12-19 12:35:21 -08:00
ios.cc
ircd.cc ircd: Move runlevel definitions into ircd.cc. 2018-12-18 17:34:12 -08:00
js.cc ircd::log: Rename facility to level. 2018-12-19 12:52:08 -08:00
json.cc ircd::json::stack: Add noexcept for non-throwers called during stack unwinds. 2018-12-24 12:06:57 -08:00
lexical.cc
locale.cc
logger.cc ircd::log: Skip some operations for log levels not compiled in. 2018-12-22 17:24:49 -08:00
magic.cc
Makefile.am Use more aggressive tls-model options. 2018-12-23 17:36:35 -08:00
mods.cc ircd::mods: Throw fs::error rather than boost's filesystem_error. 2018-12-21 15:33:18 -08:00
mods.h
net.cc ircd::ctx: Use closure for continuation. 2018-12-22 21:03:14 -08:00
openssl.cc
parse.cc
rand.cc
README.md doc: Reorg some documentation. 2018-12-20 11:29:54 -08:00
resource.cc ircd::log: Rename facility to level. 2018-12-19 12:52:08 -08:00
rfc1035.cc
rfc1459.cc
rfc3986.cc
server.cc
sodium.cc
tokens.cc
util.cc

IRCd Library Definitions

This directory contains definitions and linkage 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.

The executable linking and invoking libircd may be referred to as the "embedding" or "user" or "executable" interchangably in this documentation.

Organization

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 oriented around the inclusion of a specific dependency which is not involved in the ircd.h include group.

For example, the magic.cc unit was created to include <magic.h> internally and then provide definitions to our own interfaces in ircd.h. We don't include <magic.h> from ircd.h nor do we include it from any other compilation unit. This simply isolates libmagic as a dependency.