0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00
construct/include/ircd/m/m.h

90 lines
1.7 KiB
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_M_H
/// Matrix Protocol System
namespace ircd::m
{
using ircd::hash;
struct init;
extern struct user me;
extern struct room my_room;
extern struct node my_node;
extern struct room control;
extern struct log::log log;
extern std::list<ircd::net::listener> listeners;
IRCD_OVERLOAD(generate)
}
namespace ircd::m::self
{
string_view host();
bool host(const string_view &);
}
namespace ircd::m
{
inline string_view my_host() { return self::host(); }
inline bool my_host(const string_view &h) { return self::host(h); }
}
namespace ircd
{
using m::my_host;
}
#include "name.h"
#include "error.h"
#include "import.h"
#include "id.h"
#include "event.h"
#include "dbs.h"
2018-01-29 18:36:05 +01:00
#include "state.h"
#include "room.h"
#include "user.h"
#include "node.h"
#include "login.h"
#include "register.h"
#include "invite_3pid.h"
#include "createroom.h"
#include "filter.h"
#include "request.h"
#include "v1/v1.h"
#include "vm.h"
#include "keys.h"
#include "edu.h"
#include "presence.h"
#include "typing.h"
#include "receipt.h"
#include "txn.h"
2018-02-26 08:24:12 +01:00
#include "hook.h"
struct ircd::m::init
{
2018-03-02 09:35:02 +01:00
json::object config;
bool joined {false};
void bootstrap();
void listeners();
void modules();
dbs::init _dbs;
keys::init _keys;
public:
init();
~init() noexcept;
};