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 ); }