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.
|
2017-09-30 08:04:41 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_NET_H
|
|
|
|
|
2017-10-19 10:30:19 +02:00
|
|
|
/// Network IO subsystem.
|
|
|
|
///
|
|
|
|
/// Some parts of this system are not automatically included here when they
|
|
|
|
/// involve types which cannot be forward declared without boost headers.
|
|
|
|
/// This should not concern most developers as we have wrapped (or you should
|
|
|
|
/// wrap!) anything we need to expose to the rest of the project, or low-level
|
|
|
|
/// access may be had by including the asio.h header.
|
|
|
|
///
|
2017-09-30 08:04:41 +02:00
|
|
|
namespace ircd::net
|
|
|
|
{
|
2018-01-08 12:01:33 +01:00
|
|
|
struct init;
|
|
|
|
struct socket;
|
|
|
|
|
2017-09-30 08:04:41 +02:00
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
|
|
|
IRCD_EXCEPTION(error, disconnected)
|
2018-01-06 02:01:37 +01:00
|
|
|
IRCD_EXCEPTION(error, inauthentic)
|
2018-02-06 22:15:43 +01:00
|
|
|
IRCD_EXCEPTION(error, not_found)
|
2017-09-30 08:04:41 +02:00
|
|
|
|
2018-03-08 18:27:32 +01:00
|
|
|
using error_code = boost::system::error_code;
|
|
|
|
|
2017-10-25 18:37:37 +02:00
|
|
|
// SNOMASK 'N' "net"
|
|
|
|
extern struct log::log log;
|
2017-10-19 10:30:19 +02:00
|
|
|
}
|
|
|
|
|
2018-01-07 22:48:03 +01:00
|
|
|
#include "hostport.h"
|
|
|
|
#include "ipport.h"
|
2018-01-28 18:37:13 +01:00
|
|
|
#include "dns.h"
|
2017-10-25 18:37:37 +02:00
|
|
|
#include "listener.h"
|
2018-01-07 11:02:41 +01:00
|
|
|
#include "sock_opts.h"
|
2018-01-07 06:34:02 +01:00
|
|
|
#include "open.h"
|
|
|
|
#include "close.h"
|
2018-01-08 22:25:13 +01:00
|
|
|
#include "wait.h"
|
2018-01-07 06:34:02 +01:00
|
|
|
#include "read.h"
|
|
|
|
#include "write.h"
|
2018-04-16 00:15:26 +02:00
|
|
|
#include "scope_timeout.h"
|
2018-01-07 06:34:02 +01:00
|
|
|
|
|
|
|
namespace ircd::net
|
|
|
|
{
|
2018-02-27 07:49:44 +01:00
|
|
|
bool opened(const socket &) noexcept;
|
2018-01-07 06:34:02 +01:00
|
|
|
size_t readable(const socket &);
|
|
|
|
size_t available(const socket &) noexcept;
|
|
|
|
ipport local_ipport(const socket &) noexcept;
|
|
|
|
ipport remote_ipport(const socket &) noexcept;
|
2018-04-14 02:18:31 +02:00
|
|
|
std::pair<size_t, size_t> bytes(const socket &) noexcept; // <in, out>
|
|
|
|
std::pair<size_t, size_t> calls(const socket &) noexcept; // <in, out>
|
2018-05-11 05:57:59 +02:00
|
|
|
|
2018-02-03 08:20:26 +01:00
|
|
|
const_buffer peer_cert_der(const mutable_buffer &, const socket &);
|
2018-05-11 05:57:59 +02:00
|
|
|
const_buffer peer_cert_der_sha256(const mutable_buffer &, const socket &);
|
|
|
|
string_view peer_cert_der_sha256_b64(const mutable_buffer &, const socket &);
|
2018-01-07 06:34:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Exports to ircd::
|
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
using net::socket;
|
|
|
|
}
|
2017-09-30 08:04:41 +02:00
|
|
|
|
|
|
|
struct ircd::net::init
|
|
|
|
{
|
2018-04-29 00:31:07 +02:00
|
|
|
std::unique_ptr<struct dns::resolver> resolver;
|
|
|
|
|
2017-09-30 08:04:41 +02:00
|
|
|
init();
|
|
|
|
~init() noexcept;
|
|
|
|
};
|