xref: /aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/qbone/qbone_control_placeholder.proto (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1syntax = "proto2";
2
3option optimize_for = LITE_RUNTIME;
4
5package quic;
6
7import "quiche/quic/qbone/qbone_control.proto";
8
9// These provide fields for QboneServerRequest and QboneClientRequest that are
10// used to test the control channel.  Once the control channel actually has real
11// data to pass they can be removed.
12// TODO(b/62139999): Remove this file in favor of testing actual configuration.
13
14extend QboneServerRequest {
15  optional string server_placeholder = 179838467;
16}
17
18extend QboneClientRequest {
19  optional string client_placeholder = 179838467;
20}
21