diff options
Diffstat (limited to 'test/proto/messages.proto')
-rw-r--r-- | test/proto/messages.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/proto/messages.proto b/test/proto/messages.proto index 500e79cc81..89e55443b5 100644 --- a/test/proto/messages.proto +++ b/test/proto/messages.proto @@ -157,3 +157,11 @@ message StreamingOutputCallResponse { // Payload to increase response size. optional Payload payload = 1; } + +// For reconnect interop test only. +// Server tells client whether its reconnects are following the spec and the +// reconnect backoffs it saw. +message ReconnectInfo { + optional bool passed = 1; + repeated int32 backoff_ms = 2; +} |