0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-25 23:14:13 +01:00
construct/ircd
2019-01-10 16:58:44 -08:00
..
m modules/client/sync: Various cleanup / simplify. 2019-01-10 16:58:37 -08:00
.gitignore
aio.cc ircd::aio: Handle EINTR on the read(); clarify comment. 2019-01-05 18:16:41 -08:00
aio.h ircd::fs: Abstract the common options into opts struct. 2018-12-29 20:02:22 -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: Move and adjust default stack size. 2018-12-28 14:07:40 -08:00
ctx.h
db.cc ircd:;db: Add the file size to the table file creation log msg. 2018-12-31 16:26:57 -08:00
db.h ircd::ctx: Create and use an options structure for ctx::pool. 2018-12-28 12:57:32 -08:00
demangle.cc
exception.cc
fmt.cc
fpe.cc
fs.cc ircd::fs: Add sysfs access interface. 2019-01-01 21:15:10 -08:00
http.cc ircd::http: Improve conditions for header generation. 2018-12-31 12:28:28 -08:00
info.cc
ios.cc ircd::ios: Add function to check if an ios available. 2018-12-28 13:05:03 -08:00
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::log: Log critical messages to all outputs and ignore all masks. 2019-01-03 15:56:21 -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: Various cleanup. 2019-01-05 17:18:08 -08:00
mods.h ircd::mods: Various cleanup. 2019-01-05 17:18:08 -08:00
net.cc ircd::net::acceptor: Move socket close calls to exception handlers. 2019-01-04 12:44:29 -08:00
openssl.cc
parse.cc
rand.cc
README.md
resource.cc ircd::resource: Use pretty format for X-IRCd-Request-Timer header. 2018-12-31 20:09:25 -08:00
rfc1035.cc
rfc1459.cc
rfc3986.cc ircd::rfc3986: De-template grammar; fix rule array. 2018-12-29 19:43:17 -08:00
server.cc
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.