mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
ircd:Ⓜ️:room::bootstrap: Response tuple typedef is versionless.
This commit is contained in:
parent
ba5e001003
commit
434916bb7e
1 changed files with 3 additions and 3 deletions
|
@ -11,10 +11,10 @@
|
||||||
namespace ircd::m::bootstrap
|
namespace ircd::m::bootstrap
|
||||||
{
|
{
|
||||||
struct pkg;
|
struct pkg;
|
||||||
using send_join1_response = std::tuple<json::object, unique_buffer<mutable_buffer>>;
|
using send_join_response = std::tuple<json::object, unique_buffer<mutable_buffer>>;
|
||||||
|
|
||||||
static event::id::buf make_join(const string_view &host, const room::id &, const user::id &, const mutable_buffer &);
|
static event::id::buf make_join(const string_view &host, const room::id &, const user::id &, const mutable_buffer &);
|
||||||
static send_join1_response send_join(const string_view &host, const room::id &, const event::id &, const json::object &event);
|
static send_join_response send_join(const string_view &host, const room::id &, const event::id &, const json::object &event);
|
||||||
static void broadcast_join(const room &, const event &, const string_view &exclude);
|
static void broadcast_join(const room &, const event &, const string_view &exclude);
|
||||||
static void fetch_keys(const json::array &events);
|
static void fetch_keys(const json::array &events);
|
||||||
static void eval_auth_chain(const json::array &auth_chain, vm::opts);
|
static void eval_auth_chain(const json::array &auth_chain, vm::opts);
|
||||||
|
@ -612,7 +612,7 @@ catch(const std::exception &e)
|
||||||
//throw;
|
//throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
ircd::m::bootstrap::send_join1_response
|
ircd::m::bootstrap::send_join_response
|
||||||
ircd::m::bootstrap::send_join(const string_view &host,
|
ircd::m::bootstrap::send_join(const string_view &host,
|
||||||
const m::room::id &room_id,
|
const m::room::id &room_id,
|
||||||
const m::event::id &event_id,
|
const m::event::id &event_id,
|
||||||
|
|
Loading…
Reference in a new issue