0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-29 08:54:02 +01:00
construct/ircd
2019-04-03 15:51:42 -07:00
..
.gitignore
allocator.cc
assert.cc
base.cc
client.cc
conf.cc
crh.cc
ctx.cc ircd: Rename perf:: to prof::. 2019-04-03 15:51:42 -07:00
ctx.h
db.cc
db.h
db_env.cc
db_port.cc
demangle.cc
exception.cc
fmt.cc
fs.cc ircd::fs: Add fd fdno ctor. 2019-03-31 23:57:35 -07:00
fs_aio.cc ircd::fs::aio: Minor cleanup. 2019-03-31 13:24:42 -07:00
fs_aio.h
http.cc ircd::http: Fix case comparisons for header strings in header tool. 2019-03-31 19:00:38 -07:00
info.cc ircd::info: Fix platform condition; string length. 2019-04-01 02:04:52 -07:00
ios.cc ircd: Rename perf:: to prof::. 2019-04-03 15:51:42 -07:00
ircd.cc ircd: Rename perf:: to prof::. 2019-04-03 15:51:42 -07:00
js.cc
json.cc
lexical.cc
locale.cc
logger.cc
m.cc ircd:Ⓜ️:sync: Fix missing exception reporting on linear handle caller. 2019-04-02 09:47:35 -07:00
m_dbs.cc
m_event.cc
m_id.cc
m_name.cc ircd:Ⓜ️ Add state_filter w/ related m::name strings. 2019-03-31 14:03:21 -07:00
m_room.cc ircd:Ⓜ️:state: Reduce for_each stack. 2019-03-31 15:12:38 -07:00
m_state.cc
m_v1.cc
magic.cc
Makefile.am ircd: Rename perf:: to prof::. 2019-04-03 15:51:42 -07:00
mods.cc
mods.h
net.cc
openssl.cc
parse.cc
prof.cc ircd: Rename perf:: to prof::. 2019-04-03 15:51:42 -07:00
rand.cc
README.md
resource.cc ircd::resource: Handle and generate an OPTIONS response. 2019-03-31 23:08:29 -07:00
rfc1035.cc
rfc1459.cc
rfc3986.cc
server.cc
sodium.cc
stats.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.