| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2014 The Crashpad Authors. All rights reserved. | 2 Copyright 2014 The Crashpad Authors. All rights reserved. |
| 3 | 3 |
| 4 Licensed under the Apache License, Version 2.0 (the "License"); | 4 Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 you may not use this file except in compliance with the License. | 5 you may not use this file except in compliance with the License. |
| 6 You may obtain a copy of the License at | 6 You may obtain a copy of the License at |
| 7 | 7 |
| 8 http://www.apache.org/licenses/LICENSE-2.0 | 8 http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | 9 |
| 10 Unless required by applicable law or agreed to in writing, software | 10 Unless required by applicable law or agreed to in writing, software |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 this tool is started by launchd(8) as a result of a message being sent to a | 137 this tool is started by launchd(8) as a result of a message being sent to a |
| 138 service declared in a job’s `MachServices` dictionary (see launchd.plist(5)). | 138 service declared in a job’s `MachServices` dictionary (see launchd.plist(5)). |
| 139 The service name may also be completely unknown to the system. | 139 The service name may also be completely unknown to the system. |
| 140 | 140 |
| 141 * **--no-rate-limit** | 141 * **--no-rate-limit** |
| 142 | 142 |
| 143 Do not rate limit the upload of crash reports. By default uploads are | 143 Do not rate limit the upload of crash reports. By default uploads are |
| 144 throttled to one per hour. Using this option disables that behavior, and | 144 throttled to one per hour. Using this option disables that behavior, and |
| 145 Crashpad will attempt to upload all captured reports. | 145 Crashpad will attempt to upload all captured reports. |
| 146 | 146 |
| 147 * **--no-upload-gzip** | |
| 148 | |
| 149 Do not use `gzip` compression for uploaded crash reports. Normally, the | |
| 150 entire request body is compressed into a `gzip` stream and transmitted with | |
| 151 `Content-Encoding: gzip`. This option disables compression, and is intended | |
| 152 for use with collection servers that don’t accept uploads compressed in this | |
| 153 way. | |
| 154 | |
| 155 * **--pipe-name**=_PIPE_ | 147 * **--pipe-name**=_PIPE_ |
| 156 | 148 |
| 157 Listen on the given pipe name for connections from clients. _PIPE_ must be of | 149 Listen on the given pipe name for connections from clients. _PIPE_ must be of |
| 158 the form `\\.\pipe\<somename>`. Either this option or | 150 the form `\\.\pipe\<somename>`. Either this option or |
| 159 **--initial-client-data**, but not both, is required. This option is only | 151 **--initial-client-data**, but not both, is required. This option is only |
| 160 valid on Windows. | 152 valid on Windows. |
| 161 | 153 |
| 162 When this option is present, the server creates a named pipe at _PIPE_, a | 154 When this option is present, the server creates a named pipe at _PIPE_, a |
| 163 name known to both the server and its clients. The server continues running | 155 name known to both the server and its clients. The server continues running |
| 164 even after all clients have exited. | 156 even after all clients have exited. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 you may not use this file except in compliance with the License. | 213 you may not use this file except in compliance with the License. |
| 222 You may obtain a copy of the License at | 214 You may obtain a copy of the License at |
| 223 | 215 |
| 224 http://www.apache.org/licenses/LICENSE-2.0 | 216 http://www.apache.org/licenses/LICENSE-2.0 |
| 225 | 217 |
| 226 Unless required by applicable law or agreed to in writing, software | 218 Unless required by applicable law or agreed to in writing, software |
| 227 distributed under the License is distributed on an “AS IS” BASIS, | 219 distributed under the License is distributed on an “AS IS” BASIS, |
| 228 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 220 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 229 See the License for the specific language governing permissions and | 221 See the License for the specific language governing permissions and |
| 230 limitations under the License. | 222 limitations under the License. |
| OLD | NEW |