cds: add initial_window_size/max_concurrent_streams to Http2ProtocolOptions. (#50)

pull/54/head
htuch 8 years ago committed by GitHub
parent 7cb1d97f60
commit 35bd263aef
  1. 6
      api/cds.proto

@ -70,11 +70,13 @@ message Http1ProtocolOptions {
message Http2ProtocolOptions {
// Default is false.
bool disable_dynamic_table = 1;
uint32 per_stream_buffer_limit_bytes = 2;
google.protobuf.UInt32Value per_stream_buffer_limit_bytes = 2;
google.protobuf.UInt32Value max_concurrent_streams = 3;
google.protobuf.UInt32Value initial_window_size = 4;
}
message GrpcProtocolOptions {
uint32 per_stream_buffer_limit_bytes = 1;
Http2ProtocolOptions http2_protocol_options = 1;
}
message Cluster {

Loading…
Cancel
Save