0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-12 15:08:55 +02:00
construct/include/ircd/server/server.h

64 lines
1.4 KiB
C++

// 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_SERVER_H
/// The interface for when IRCd plays the role of client to other servers
///
namespace ircd::server
{
struct init;
struct link;
struct peer;
struct request;
struct tag;
IRCD_EXCEPTION(ircd::error, error);
IRCD_EXCEPTION(error, buffer_overrun);
IRCD_EXCEPTION(error, unavailable);
IRCD_EXCEPTION(error, canceled);
using error_code = boost::system::error_code;
extern ircd::log::log log;
}
#include "tag.h"
#include "request.h"
#include "link.h"
#include "peer.h"
namespace ircd::server
{
size_t tag_count();
size_t link_count();
size_t peer_count();
size_t peer_unfinished();
string_view errmsg(const net::hostport &);
bool errclear(const net::hostport &);
bool exists(const net::hostport &);
peer &find(const net::hostport &);
peer &get(const net::hostport &);
void interrupt_all();
void close_all();
void wait_all();
}
/// Subsystem initialization / destruction from ircd::main
///
struct ircd::server::init
{
init();
~init() noexcept;
};