0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 18:18:35 +02:00
construct/include/ircd/server/server.h

56 lines
1.3 KiB
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
2018-02-04 03:22:01 +01:00
// 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
2018-02-04 03:22:01 +01:00
// 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_SERVER_H
/// The interface for when IRCd plays the role of client to other nodes
///
namespace ircd::server
{
struct init;
struct link;
struct node;
struct request;
struct tag;
IRCD_EXCEPTION(ircd::error, error);
IRCD_EXCEPTION(error, buffer_overrun);
IRCD_EXCEPTION(error, unavailable);
IRCD_EXCEPTION(error, canceled);
extern ircd::log::log log;
extern std::map<string_view, std::shared_ptr<node>> nodes;
size_t tag_count();
size_t link_count();
size_t node_count();
string_view errmsg(const net::hostport &);
bool exists(const net::hostport &);
node &find(const net::hostport &);
node &get(const net::hostport &);
}
#include "tag.h"
#include "request.h"
#include "link.h"
#include "node.h"
/// Subsystem initialization / destruction from ircd::main
///
struct ircd::server::init
{
void interrupt();
init();
~init() noexcept;
};