]> git.sesse.net Git - stockfish/blob - src/hashprobe.proto
5df9b9c52945f971bdc1fd2ce53c5cfc683966d0
[stockfish] / src / hashprobe.proto
1 syntax = "proto3";
2
3 message HashProbeRequest {
4         string fen = 1;
5 }
6 message HashProbeResponse {
7         bool found = 1;
8         int32 move = 2;
9         int32 value = 3;
10         int32 eval = 4;
11         int32 depth = 5;
12         int32 bound = 6;
13 }
14
15 service HashProbe {
16         rpc Probe(HashProbeRequest) returns (HashProbeResponse) {}
17 }