From 3023fb22598980352f0865825f6d91ce5f20754e Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Mon, 18 Oct 2021 11:29:25 +0200 Subject: [PATCH] =?UTF-8?q?Schema=20update=E2=84=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- auth.capnp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.capnp b/auth.capnp index c83793a..2a1691f 100644 --- a/auth.capnp +++ b/auth.capnp @@ -11,7 +11,7 @@ using L10NString = import "utils.capnp".L10NString; using Session = import "main.capnp".Session; struct Response { - enum Error { + enum Reason { aborted @0; # This authentication exchange was aborted by either side. @@ -72,7 +72,7 @@ struct Response { # default set value meaning if a server fails to set any of the values, indicating some # pretty severe server bugs, it is parsed as an "aborted" error. - result @0 :Error; + reason @0 :Reason; action @1 :Action; description @2 :L10NString; # A human-readable error description that is designed to be shown to the user in case of