mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
67 lines
1.4 KiB
C++
67 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_M_SELF_H
|
|
|
|
namespace ircd::m::self
|
|
{
|
|
struct init;
|
|
|
|
extern std::string origin;
|
|
extern std::string servername;
|
|
extern ed25519::sk secret_key;
|
|
extern ed25519::pk public_key;
|
|
extern std::string public_key_b64;
|
|
extern std::string public_key_id;
|
|
extern std::string tls_cert_der;
|
|
extern std::string tls_cert_der_sha256_b64;
|
|
|
|
string_view host();
|
|
bool host(const string_view &);
|
|
|
|
void create_my_key();
|
|
}
|
|
|
|
namespace ircd::m
|
|
{
|
|
extern struct user me;
|
|
extern struct room my_room;
|
|
extern struct node my_node;
|
|
|
|
string_view my_host();
|
|
bool my_host(const string_view &);
|
|
}
|
|
|
|
namespace ircd
|
|
{
|
|
using m::my_host;
|
|
}
|
|
|
|
struct ircd::m::self::init
|
|
{
|
|
static void federation_ed25519();
|
|
static void tls_certificate();
|
|
static void keys();
|
|
|
|
init(const string_view &origin, const string_view &servername);
|
|
};
|
|
|
|
inline ircd::string_view
|
|
ircd::m::my_host()
|
|
{
|
|
return self::host();
|
|
}
|
|
|
|
inline bool
|
|
ircd::m::my_host(const string_view &host)
|
|
{
|
|
return self::host(host);
|
|
}
|