From f1bd45141e0c1f46a05f1f90753b6a6f20218173 Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Wed, 22 Dec 2021 19:13:42 +0000 Subject: [PATCH] Changed API Version ID to get backward compatibility in Bootstrap Interface --- connection.capnp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/connection.capnp b/connection.capnp index 98337df..ef6725b 100644 --- a/connection.capnp +++ b/connection.capnp @@ -24,15 +24,15 @@ struct Version interface Bootstrap { - authenticationSystem @0 () -> ( authenticationSystem : AuthenticationSystem ); + getAPIVersion @0 () -> ( version : Version ); - machineSystem @1 () -> ( machineSystem : MachineSystem ); + getServerVersion @1 () -> ( version : Version ); + + authenticationSystem @2 () -> ( authenticationSystem : AuthenticationSystem ); + + machineSystem @3 () -> ( machineSystem : MachineSystem ); - userSystem @2 () -> ( userSystem : UserSystem ); + userSystem @4 () -> ( userSystem : UserSystem ); - permissionSystem @3 () -> ( permissionSystem : PermissionSystem ); - - getAPIVersion @4 () -> ( version : Version ); - - getServerVersion @5 () -> ( version : Version ); + permissionSystem @5 () -> ( permissionSystem : PermissionSystem ); }