2018-01-22 19:05:45 +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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_V1_SEND_JOIN_H
|
|
|
|
|
|
|
|
namespace ircd::m::v1
|
|
|
|
{
|
|
|
|
struct send_join;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::m::v1::send_join
|
|
|
|
:server::request
|
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
|
|
|
|
operator json::array() const
|
|
|
|
{
|
|
|
|
return json::array{in.content};
|
|
|
|
}
|
|
|
|
|
2018-03-09 00:55:02 +01:00
|
|
|
send_join(const room::id &, const id::event &, const const_buffer &, const mutable_buffer &, opts);
|
2018-03-06 13:28:17 +01:00
|
|
|
send_join() = default;
|
2018-01-22 19:05:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::m::v1::send_join::opts
|
|
|
|
{
|
|
|
|
net::hostport remote;
|
|
|
|
m::request request;
|
|
|
|
server::out out;
|
|
|
|
server::in in;
|
|
|
|
const struct server::request::opts *sopts {nullptr};
|
2018-04-06 09:21:32 +02:00
|
|
|
bool dynamic {true};
|
2018-01-22 19:05:45 +01:00
|
|
|
};
|