2018-01-22 12:32:15 +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_H
|
|
|
|
|
2018-04-06 07:11:46 +02:00
|
|
|
namespace ircd::m::v1
|
|
|
|
{
|
|
|
|
id::event::buf fetch_head(const id::room &room_id, const net::hostport &remote, const id::user &);
|
|
|
|
id::event::buf fetch_head(const id::room &room_id, const net::hostport &remote);
|
|
|
|
}
|
|
|
|
|
2018-02-19 23:34:34 +01:00
|
|
|
#include "version.h"
|
2018-05-07 23:46:53 +02:00
|
|
|
#include "key.h"
|
2018-02-25 08:53:32 +01:00
|
|
|
#include "query.h"
|
2018-04-03 03:24:57 +02:00
|
|
|
#include "user.h"
|
2018-01-22 12:32:15 +01:00
|
|
|
#include "make_join.h"
|
2018-01-22 19:05:45 +01:00
|
|
|
#include "send_join.h"
|
2018-04-03 21:58:18 +02:00
|
|
|
#include "invite.h"
|
2018-01-22 12:32:15 +01:00
|
|
|
#include "event.h"
|
2018-04-08 20:27:59 +02:00
|
|
|
#include "event_auth.h"
|
2018-01-22 12:32:15 +01:00
|
|
|
#include "state.h"
|
|
|
|
#include "backfill.h"
|
2018-06-04 03:43:17 +02:00
|
|
|
#include "frontfill.h"
|
2018-04-08 22:27:18 +02:00
|
|
|
#include "public_rooms.h"
|
2018-01-22 19:05:45 +01:00
|
|
|
#include "send.h"
|
2018-03-28 10:00:08 +02:00
|
|
|
#include "groups.h"
|