mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 19:08:59 +01:00
63 lines
1.4 KiB
C++
63 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 &);
|
|
}
|
|
|
|
/// Subsystem initialization / destruction from ircd::main
|
|
///
|
|
struct ircd::server::init
|
|
{
|
|
void interrupt();
|
|
void close();
|
|
void wait();
|
|
|
|
init();
|
|
~init() noexcept;
|
|
};
|