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 d0b79829f084506d4e20091d41984983b6cd7892
parent bcd1c5764b7de611db39ad5cbaba30ff1876f5b0
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Thu, 30 Nov 2017 21:28:40 +0100

Fix syntax for proto3
Diffstat:
Mfederation/server.proto | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/federation/server.proto b/federation/server.proto @@ -31,22 +31,22 @@ message KeyResponse { } message OldVerifyKey { - required string type = 1; - required int64 expiredTS = 2; - required string key = 3; + string type = 1; + int64 expiredTS = 2; + string key = 3; } message Signature { - required string server_name = 1; - required string type = 2; - required string signature = 3; + string server_name = 1; + string type = 2; + string signature = 3; } message TlsFingerprint { - required string sha256 = 1; + string sha256 = 1; } message VerifyKey { - required string type = 1; - required string key = 3; + string type = 1; + string key = 3; }