Skip to content
Snippets Groups Projects
Commit 913f5ab7 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Merge remote-tracking branch 'origin/fix_logproto' into simplify_compression_interop

parents 50c5511a e5f0f951
No related branches found
No related tags found
No related merge requests found
...@@ -29,20 +29,20 @@ ...@@ -29,20 +29,20 @@
syntax = "proto3"; syntax = "proto3";
import "google/protobuf/timestamp.proto" import "google/protobuf/timestamp.proto";
package grpc.binary_log.v1alpha; package grpc.binary_log.v1alpha;
enum Direction { enum Direction {
SERVER_SEND; SERVER_SEND = 0;
SERVER_RECV; SERVER_RECV = 1;
CLIENT_SEND; CLIENT_SEND = 2;
CLIENT_RECV; CLIENT_RECV = 3;
} }
message KeyValuePair { message KeyValuePair {
string key; string key = 1;
string value; string value = 2;
} }
// Any sort of metadata that may be sent in either direction during a call // Any sort of metadata that may be sent in either direction during a call
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment