0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-02 19:04:17 +01:00
construct/ircd
2019-02-28 17:12:03 -08:00
..
.gitignore
allocator.cc ircd::allocator: Add and fix attribute related. 2019-02-28 11:34:45 -08:00
base.cc ircd: Add b64 <-> b58 convenience conversion suite. 2018-04-22 14:24:37 -07:00
client.cc ircd::db: Truncate comments. 2019-02-08 09:18:39 -08:00
conf.cc
crh.cc
ctx.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
ctx.h
db.cc ircd::db: Checkpoint coarse configuration values for now. 2019-02-25 18:20:48 -08:00
db.h
db_env.cc ircd: Various quietudes. 2019-02-16 15:25:36 -08:00
db_port.cc
demangle.cc
exception.cc ircd: Attempt to find a current exception in terminate(). 2019-02-07 23:09:31 -08:00
fmt.cc Eliminate friend-injection. 2019-02-15 18:48:59 -08:00
fs.cc ircd::fs: Include <sys/sysmacros.h> if available. 2019-02-15 18:48:59 -08:00
fs_aio.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
fs_aio.h
http.cc ircd::http: Fix/Add 30x related codes. 2019-02-19 11:34:48 -08:00
info.cc ircd::openssl: Return version strings for header and linked library. 2019-02-18 15:12:01 -08:00
ios.cc ircd: Various quietudes. 2019-02-16 15:25:36 -08:00
ircd.cc
js.cc
json.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
lexical.cc
locale.cc
logger.cc
m.cc ircd:Ⓜ️ Add central linkage for is_complete(room). 2019-02-28 17:12:03 -08:00
m_dbs.cc ircd:Ⓜ️:dbs: Fixes to the index_redact path and related; minor reorg. 2019-02-18 13:42:25 -08:00
m_event.cc ircd:Ⓜ️:event::auth::chain: No closing over full event; overload void closure. 2019-02-16 15:25:36 -08:00
m_id.cc ircd:Ⓜ️🆔 Add test for whether hostname is an IP literal. 2019-02-26 13:55:01 -08:00
m_name.cc ircd:Ⓜ️:device: Associate access_token to device. 2019-02-20 15:46:48 -08:00
m_room.cc ircd:Ⓜ️:room::origins: Improve origins::random import definition. 2019-02-28 17:12:03 -08:00
m_state.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
m_v1.cc ircd:Ⓜ️:v1: Remove non-opts overloads; workaround g++-7 compiler bug. 2019-02-25 18:00:39 -08:00
magic.cc ircd::magic: Relax the linked version check. 2019-02-18 15:17:50 -08:00
Makefile.am Makefiles: Remove --gdb-index here because no -gsplit-dwarf used. 2019-02-25 18:20:48 -08:00
mods.cc ircd::mods: Rename and expose exports map; add/update console cmds. 2019-02-09 18:43:05 -08:00
mods.h ircd::mods: Rename and expose exports map; add/update console cmds. 2019-02-09 18:43:05 -08:00
net.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
openssl.cc ircd::openssl: Include the openssl/asn1.h header. 2019-02-26 18:56:29 -08:00
parse.cc
rand.cc
README.md
resource.cc ircd: Replace various unwind count patterns with scope_count. 2019-02-28 17:12:03 -08:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd::rfc3986: Expose parsing grammar externally. 2019-02-26 13:52:10 -08:00
server.cc
sodium.cc
tokens.cc
util.cc ircd: Move fpe into util. 2019-02-16 13:17:44 -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.