Networking server work, added shared state

This commit is contained in:
Kirill Shakirov
2026-03-07 17:07:54 +01:00
parent fc356982c7
commit 79852c6c3f
2 changed files with 163 additions and 24 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
syntax = "proto3";
package nyash_server;
package nyash_proto;
service NyashLuks {
// Requesting work, gettin in response work data, error, or message that there is no work currently awaylable.
@@ -74,5 +74,6 @@ message ProgressRequest {
message ProgressReply {
// Brutforce progress as ratio from 0 to 1(completed)
bool key_found = 1;
double progress = 2;
}