matrixprotofiles

A Repo containing .proto files for the matrix protocol. Used in https://github.com/MTRNord/MatrixProtoBuf
git clone git://archive.git.mtrnord.blog/Nordgedanken/matrixprotofiles.git
Log | Files | Refs | README | LICENSE

commit ac2314e45e956a582e03bdb73ba566ed2fcf3eb5
parent 1da9a86522ce6d1390c3f136c6951f434acc1356
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Mon,  4 Dec 2017 09:37:42 +0100

Update server.proto
Diffstat:
Mfederation/server.proto | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/federation/server.proto b/federation/server.proto @@ -50,3 +50,17 @@ message VerifyKey { string type = 1; string key = 3; } + +message PDU { + string room_id = 1; + string sender = 2; + string origin = 3; + string event_id = 4; + int64 origin_server_ts = 5; + string type = 6; + string state_key = 7; + Content content = 8; + repeated Event prev_events = 9; + int64 depth = 10; + //Todo +}