2018-02-19 23:34:34 +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
|
2020-03-06 04:35:20 +01:00
|
|
|
#define HAVE_IRCD_M_FED_VERSION_H
|
2018-02-19 23:34:34 +01:00
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
namespace ircd::m::fed
|
2018-02-19 23:34:34 +01:00
|
|
|
{
|
|
|
|
struct version;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::version
|
2020-03-08 02:15:58 +01:00
|
|
|
:request
|
2018-02-19 23:34:34 +01:00
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
explicit operator json::object() const
|
2018-02-19 23:34:34 +01:00
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
return json::object
|
|
|
|
{
|
|
|
|
in.content
|
|
|
|
};
|
2018-02-19 23:34:34 +01:00
|
|
|
}
|
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
version(const mutable_buffer &,
|
|
|
|
opts);
|
2018-02-19 23:34:34 +01:00
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
version() = default;
|
2018-02-19 23:34:34 +01:00
|
|
|
};
|