0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00
construct/ircd
2018-12-21 13:56:20 -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::aio: Add condition to submit for queue full; assertions; minor cleanup. 2018-12-21 13:25:08 -08:00
aio.h ircd::fs::aio: Reorganize with symbol overriding; add conf items. 2018-12-21 13:04:57 -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::prof: Use a profile instance as a totals counter. 2018-12-21 11:55:43 -08:00
ctx.h
db.cc ircd::db: Add a ctx::slice_usage_warning message for background task executions. 2018-12-19 14:06:28 -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
fs.cc ircd::fs: Add instrumentation related for dynamic stack array. 2018-12-21 13:19:34 -08:00
http.cc ircd::http: De-template grammar and assume iterator type. 2018-12-21 13:56:20 -08:00
info.cc
ios.cc
ircd.cc
js.cc
json.cc
lexical.cc
locale.cc
logger.cc ircd::log: Tweak defaults. 2018-12-19 14:14:28 -08:00
magic.cc
Makefile.am ircd::fs::aio: Reorganize with symbol overriding; add conf items. 2018-12-21 13:04:57 -08:00
mods.cc
mods.h
net.cc
openssl.cc
parse.cc
rand.cc
README.md doc: Reorg some documentation. 2018-12-20 11:29:54 -08:00
resource.cc
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.