mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
363 B
22 lines
363 B
10 years ago
|
syntax = "proto2";
|
||
|
|
||
|
package grpc.cpp.test.util;
|
||
|
|
||
|
message RequestParams {
|
||
|
optional bool echo_deadline = 1;
|
||
|
}
|
||
|
|
||
|
message EchoRequest {
|
||
|
optional string message = 1;
|
||
|
optional RequestParams param = 2;
|
||
|
}
|
||
|
|
||
|
message ResponseParams {
|
||
|
optional int64 request_deadline = 1;
|
||
|
}
|
||
|
|
||
|
message EchoResponse {
|
||
|
optional string message = 1;
|
||
|
optional ResponseParams param = 2;
|
||
|
}
|