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-27 20:31:39 -08:00
..
.gitignore
allocator.cc
base.cc
client.cc
conf.cc
crh.cc
ctx.cc ircd::ctx: Support slice_usage_warning outside of context system too. 2019-02-12 12:04:01 -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
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::fs: Add slice_usage_warning around io_submit() / open(2). 2019-02-12 12:04:01 -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::json: Add candidate vector merge impl. 2019-02-27 15:52:39 -08:00
lexical.cc
locale.cc
logger.cc
m.cc ircd:Ⓜ️:events: Fix iteration behavior with equal range parameters. 2019-02-27 16:27:04 -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::power: Relax existential condition to allow fallback; minor cleanup. 2019-02-27 20:31:39 -08:00
m_state.cc
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
mods.h
net.cc Eliminate friend-injection. 2019-02-15 18:48:59 -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::resource: Add a pending request counter; block destruction of method when pending. 2019-02-27 17:49:40 -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.