0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-06 02:28:38 +02:00
construct/include/ircd/server/server.h

60 lines
1.4 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
2018-03-05 15:59:10 +01:00
/// The interface for when IRCd plays the role of client to other peers
///
namespace ircd::server
{
struct init;
struct link;
2018-03-05 15:59:10 +01:00
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;
2018-03-05 15:59:10 +01:00
extern std::map<string_view, std::shared_ptr<peer>> peers;
size_t tag_count();
size_t link_count();
2018-03-05 15:59:10 +01:00
size_t peer_count();
string_view errmsg(const net::hostport &);
bool exists(const net::hostport &);
2018-03-05 15:59:10 +01:00
peer &find(const net::hostport &);
peer &get(const net::hostport &);
}
#include "tag.h"
#include "request.h"
#include "link.h"
2018-03-05 15:59:10 +01:00
#include "peer.h"
/// Subsystem initialization / destruction from ircd::main
///
struct ircd::server::init
{
void interrupt();
void close();
void wait();
init();
~init() noexcept;
};