0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-03 19:34:29 +01:00
construct/ircd
2019-01-13 16:55:52 -08:00
..
m ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
.gitignore
aio.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
aio.h ircd::fs::aio: Simplify various conditions; add various comments; cleanup. 2019-01-13 14:02:03 -08:00
allocator.cc
base.cc
client.cc ircd::client: Fix typo. 2018-12-31 20:18:02 -08:00
conf.cc
crh.cc
ctx.cc ircd::ctx: Improve exception handling at base frame. 2019-01-13 16:37:31 -08:00
ctx.h
db.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
db.h
demangle.cc
exception.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
fmt.cc
fpe.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
fs.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
http.cc ircd::http: Add string views to make the raw head data available. 2019-01-12 11:56:00 -08:00
info.cc
ios.cc
ircd.cc ircd: Remove unused ap/cbor on this branch. 2019-01-02 12:27:17 -08:00
js.cc
json.cc ircd::json::stack: Add object::append() convenience. 2019-01-10 16:58:44 -08:00
lexical.cc
locale.cc
logger.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
magic.cc
Makefile.am ircd: Remove unused ap/cbor on this branch. 2019-01-02 12:27:17 -08:00
mods.cc ircd::mods: Improve exception translation. 2019-01-13 16:55:52 -08:00
mods.h ircd::mods: Various cleanup. 2019-01-05 17:18:08 -08:00
net.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
openssl.cc
parse.cc ircd::spirit: Add a template for the common expectation failure rethrow integration. 2018-10-02 18:11:50 -07:00
rand.cc
README.md
resource.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
server.cc ircd: Rename and refactor ircd::assertion interface into ircd::panic. 2019-01-13 16:37:31 -08:00
sodium.cc
tokens.cc
util.cc ircd::util: Add more pretty date units. 2019-01-07 13:22:47 -08:00

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.