veilid/veilid-server/proto/veilid-client.capnp

47 lines
910 B
Cap'n Proto
Raw Normal View History

2021-11-22 11:28:30 -05:00
@0xd29582d26b2fb073;
enum AttachmentState {
detached @0;
attaching @1;
attachedWeak @2;
attachedGood @3;
attachedStrong @4;
fullyAttached @5;
overAttached @6;
detaching @7;
}
struct Attachment {
state @0 :AttachmentState;
2021-11-22 11:28:30 -05:00
}
struct VeilidUpdate {
union {
attachment @0 :Attachment;
dummy @1 :Void;
}
2021-11-22 11:28:30 -05:00
}
struct VeilidState {
attachment @0 :Attachment;
2021-11-22 11:28:30 -05:00
}
interface Registration {}
interface VeilidServer {
register @0 (veilidClient: VeilidClient) -> (registration: Registration);
debug @1 (what: Text) -> (output: Text);
2021-11-22 11:28:30 -05:00
attach @2 ();
detach @3 ();
shutdown @4 ();
getState @5 () -> (state: VeilidState);
2021-11-22 11:28:30 -05:00
}
interface VeilidClient {
update @0 (veilidUpdate: VeilidUpdate);
2021-12-10 20:14:33 -05:00
logMessage @1 (message: Text);
2021-11-22 11:28:30 -05:00
}