Index: extensions/common/api/vpn_provider.idl |
diff --git a/extensions/common/api/vpn_provider.idl b/extensions/common/api/vpn_provider.idl |
index ab5e31c0a8dab12fb0fdf2f95b21760151709584..65dc5c461c4052c2eb2e101bf639b37772a01e56 100644 |
--- a/extensions/common/api/vpn_provider.idl |
+++ b/extensions/common/api/vpn_provider.idl |
@@ -20,12 +20,21 @@ namespace vpnProvider { |
// server. |
// When many rules match a destination, the rule with the longest matching |
// prefix wins. |
+ // Entries that correspond to the same CIDR block are treated as duplicates. |
+ // Such duplicates in the collated (exclusionList + inclusionList) list are |
+ // eliminated and the exact duplicate entry that would be eliminated is |
bartfab (slow)
2015/02/20 16:56:53
Nit: s/would/will/
|
+ // undefined. |
DOMString[] exclusionList; |
// Include network traffic to the list of IP blocks in CIDR notation to the |
- // tunnel. By default all user traffic is routed to the tunnel. This |
- // parameter can be used to setup split tunnel. |
+ // tunnel. This parameter can be used to setup split tunnel. By default no |
bartfab (slow)
2015/02/20 16:56:53
Nit: s/setup/set up a/
|
+ // traffic is directed to the tunnel. Adding the entry "0.0.0.0/0" to this |
+ // list gets all the user traffic redirected to the tunnel. |
// When many rules match a destination, the rule with the longest matching |
// prefix wins. |
+ // Entries that correspond to the same CIDR block are treated as duplicates. |
+ // Such duplicates in the collated (exclusionList + inclusionList) list are |
+ // eliminated and the exact duplicate entry that would be eliminated is |
bartfab (slow)
2015/02/20 16:56:53
Nit: s/would/will/
|
+ // undefined. |
DOMString[] inclusionList; |
// A list of search domains. (default: no search domain) |
DOMString[]? domainSearch; |