OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 syntax = "proto2"; | 5 syntax = "proto2"; |
6 | 6 |
7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
8 | 8 |
9 package data_reduction_proxy; | 9 package data_reduction_proxy; |
10 | 10 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
102 // The host name for the proxy server. | 102 // The host name for the proxy server. |
103 optional string host = 2; | 103 optional string host = 2; |
104 // The port number for the proxy server. | 104 // The port number for the proxy server. |
105 optional int32 port = 3; | 105 optional int32 port = 3; |
106 } | 106 } |
107 | 107 |
108 // Request object to create a client configuration object. | 108 // Request object to create a client configuration object. |
109 message CreateClientConfigRequest { | 109 message CreateClientConfigRequest { |
110 // A previous per-session key that was assigned by the service. | 110 // A previous per-session key that was assigned by the service. |
111 optional string session_key = 1; | 111 optional string session_key = 1; |
112 | |
113 // Build version information. | |
114 optional VersionInfo version_info = 2; | |
112 } | 115 } |
116 | |
117 // Build version information. | |
118 message VersionInfo { | |
119 // The client's platform type. | |
buettner
2016/06/28 22:39:38
// The client type.
Not sure if this is Chromium
RyanSturm
2016/06/29 19:02:35
Done.
| |
120 optional string client = 1; | |
121 | |
122 // The version number, e.g. "6.0.490.1". | |
123 optional int32 build = 2; | |
124 | |
125 // The patch number of the chromium client: always a non-negative integer. | |
126 optional int32 patch = 3; | |
127 | |
128 // The production channel. | |
129 optional string channel = 4; | |
130 } | |
OLD | NEW |