blob: c3eaeabc0eb530ba12ec90a841a78ff53d89df81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"use strict";
function run_test() {
let testURIs = [
// 100.64/10 prefix (RFC 6598)
["http://100.63.255.254", false],
["http://100.64.0.0", true],
["http://100.91.63.42", true],
["http://100.127.255.254", true],
["http://100.128.0.0", false],
];
for (let [uri, isShared] of testURIs) {
let nsuri = Services.io.newURI(uri);
equal(isShared, Services.io.hostnameIsSharedIPAddress(nsuri));
}
}
|