Skip to content

Commit

Permalink
feat: add multiplexing config
Browse files Browse the repository at this point in the history
  • Loading branch information
seamesluo committed Feb 23, 2023
1 parent d24bf2c commit 2ed4aea
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions api/meta_protocol_proxy/v1alpha/meta_protocol_proxy.proto
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ message MetaProtocolProxy {

// for idle downstream timer.
google.protobuf.Duration idle_timeout = 11;

// Configuration for protocol
ProtocolConfig protocol = 12;
}

message Rds {
Expand Down Expand Up @@ -151,3 +154,10 @@ message Tracing {
envoy.config.trace.v3.Tracing.Http provider = 9;
}

message ProtocolConfig {
// The codec which encodes and decodes the application protocol.
Codec codec = 1;
// is open multiplexing
bool open_multiplexing = 2;
}

0 comments on commit 2ed4aea

Please sign in to comment.