Fix internal.proto
Some checks failed
Build / download-system-deps (push) Successful in 3m25s
Build / build-android (push) Blocked by required conditions
Build / build-windows (push) Blocked by required conditions
Build / get-source-code (push) Blocked by required conditions
Build / build-appimage (push) Blocked by required conditions
Build / build-gentoo (push) Failing after 25s

This commit is contained in:
Zachary Hall 2024-12-08 11:06:56 -08:00
parent ca1ac38885
commit 867fa563f0

View file

@ -13,12 +13,6 @@ message RenderResponse {
uint64 len = 302; uint64 len = 302;
bytes data = 303; bytes data = 303;
}; };
message Ping {
bytes data = 1;
};
message Pong {
bytes data = 1;
};
message LogMessage { message LogMessage {
uint64 timespec = 6000; uint64 timespec = 6000;
uint32 level = 6001; uint32 level = 6001;
@ -51,8 +45,6 @@ message RPCCall {
QuitCmd quit = 6; QuitCmd quit = 6;
InitCommand init = 7; InitCommand init = 7;
GetPropertyListCommand get_property_list = 8; GetPropertyListCommand get_property_list = 8;
Ping = 9;
Pong = 10;
}; };
}; };
message PropertyList { message PropertyList {
@ -67,7 +59,5 @@ message RPCResponse {
ResetResponse reset = 5; ResetResponse reset = 5;
ErrorResponse err = 6; ErrorResponse err = 6;
PropertyList property_list = 7; PropertyList property_list = 7;
Ping = 8;
Pong = 9;
}; };
}; };