Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="stylesheet" href="onc_spec.css" > | 5 <link rel="stylesheet" href="onc_spec.css" > |
| 6 <script src="onc_spec.js"></script> | 6 <script src="onc_spec.js"></script> |
| 7 <title>Open Network Configuration Format</title> | 7 <title>Open Network Configuration Format</title> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 | 10 |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 344 <span class="type">string</span> | 344 <span class="type">string</span> |
| 345 </span> | 345 </span> |
| 346 <span class="rule"> | 346 <span class="rule"> |
| 347 <span class="rule_id"></span> | 347 <span class="rule_id"></span> |
| 348 Allowed values are <span class="value">Cellular</span>, | 348 Allowed values are <span class="value">Cellular</span>, |
| 349 <span class="value">Ethernet</span>, <span class="value">WiFi</span>, | 349 <span class="value">Ethernet</span>, <span class="value">WiFi</span>, |
| 350 and <span class="value">VPN</span>. | 350 and <span class="value">VPN</span>. |
| 351 </span> | 351 </span> |
| 352 Indicates which kind of connection this is. | 352 Indicates which kind of connection this is. |
| 353 </dd> | 353 </dd> |
| 354 | |
| 355 <dt class="field">ConnectionState</dt> | |
| 356 <dd> | |
| 357 <span class="field_meta"> | |
| 358 (optional, read-only) | |
| 359 <span class="type">ConnectionState</span> | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
ConnectionState -> string ?
stevenjb
2014/05/01 01:45:14
Done.
| |
| 360 </span> | |
| 361 The current connection state for this network, provided by the system. | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
This and the other comments in this file could be
stevenjb
2014/05/01 01:45:14
Done.
| |
| 362 </dd> | |
| 363 | |
| 364 <dt class="field">ErrorState</dt> | |
| 365 <dd> | |
| 366 <span class="field_meta"> | |
| 367 (optional, read-only) | |
| 368 <span class="type">ErrorState</span> | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
-> string ?
stevenjb
2014/05/01 01:45:14
Done.
| |
| 369 </span> | |
| 370 The current system dependent error state for this network. | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
Either this is english-humanreadable or we should
stevenjb
2014/05/01 01:45:14
Done.
| |
| 371 </dd> | |
| 372 | |
| 354 </dl> | 373 </dl> |
| 355 | 374 |
| 356 <section> | 375 <section> |
| 357 <h1>Ethernet networks</h1> | 376 <h1>Ethernet networks</h1> |
| 358 <p> | 377 <p> |
| 359 For Ethernet connections, <span class="field">Type</span> must be set to | 378 For Ethernet connections, <span class="field">Type</span> must be set to |
| 360 <span class="value">Ethernet</span> and the | 379 <span class="value">Ethernet</span> and the |
| 361 field <span class="field">Ethernet</span> must be set to an object of | 380 field <span class="field">Ethernet</span> must be set to an object of |
| 362 type <span class="type">Ethernet</span> containing the following fields: | 381 type <span class="type">Ethernet</span> containing the following fields: |
| 363 </p> | 382 </p> |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 546 </dd> | 565 </dd> |
| 547 | 566 |
| 548 <dt class="field">SSID</dt> | 567 <dt class="field">SSID</dt> |
| 549 <dd> | 568 <dd> |
| 550 <span class="field_meta"> | 569 <span class="field_meta"> |
| 551 (required) | 570 (required) |
| 552 <span class="type">string</span> | 571 <span class="type">string</span> |
| 553 </span> | 572 </span> |
| 554 SSID of the network. | 573 SSID of the network. |
| 555 </dd> | 574 </dd> |
| 575 | |
| 576 <dt class="field">SignalStrength</dt> | |
| 577 <dd> | |
| 578 <span class="field_meta"> | |
| 579 (optional, read-only) | |
| 580 <span class="type">SignalStrength</span> | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
-> integer ?
stevenjb
2014/05/01 01:45:14
Done.
| |
| 581 </span> | |
| 582 The current signal strength for this network, provided by the system. | |
|
pneubeck (no reviews)
2014/04/30 08:44:02
Should mention the range and the value if the netw
stevenjb
2014/05/01 01:45:14
Done.
| |
| 583 </dd> | |
| 556 </dl> | 584 </dl> |
| 557 </section> | 585 </section> |
| 558 | 586 |
| 559 <section> | 587 <section> |
| 560 <h1>VPN networks</h1> | 588 <h1>VPN networks</h1> |
| 561 <p> | 589 <p> |
| 562 There are many kinds of VPNs with widely varying configuration options. We | 590 There are many kinds of VPNs with widely varying configuration options. We |
| 563 offer standard configuration options for a few common configurations at this | 591 offer standard configuration options for a few common configurations at this |
| 564 time, and may add more later. For all others, implementation specific fields | 592 time, and may add more later. For all others, implementation specific fields |
| 565 should be used. | 593 should be used. |
| (...skipping 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2235 is transmitted or saved to disk should be secure. On client device, when | 2263 is transmitted or saved to disk should be secure. On client device, when |
| 2236 user names for connections that are user-specific are persisted to disk, | 2264 user names for connections that are user-specific are persisted to disk, |
| 2237 they should be stored in a location that is encrypted. Users can also opt in | 2265 they should be stored in a location that is encrypted. Users can also opt in |
| 2238 these cases to not save their user credentials in the config file and will | 2266 these cases to not save their user credentials in the config file and will |
| 2239 instead be prompted when they are needed. | 2267 instead be prompted when they are needed. |
| 2240 </p> | 2268 </p> |
| 2241 </section> | 2269 </section> |
| 2242 </section> | 2270 </section> |
| 2243 </body> | 2271 </body> |
| 2244 </html> | 2272 </html> |
| OLD | NEW |