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 @@
syntax = "proto3";
import "google/protobuf/timestamp.proto"
import "google/protobuf/timestamp.proto";
package grpc.binary_log.v1alpha;
enum Direction {
SERVER_SEND;
SERVER_RECV;
CLIENT_SEND;
CLIENT_RECV;
SERVER_SEND = 0;
SERVER_RECV = 1;
CLIENT_SEND = 2;
CLIENT_RECV = 3;
}
message KeyValuePair {
string key;
string value;
string key = 1;
string value = 2;
}
// 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