1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00

this addresses #122

This commit is contained in:
gorhill 2015-09-26 11:51:06 -04:00
parent 7d4e569bd6
commit 6fdbf9dd94

View file

@ -26,6 +26,8 @@
µMatrix.Matrix = (function() {
'use strict';
/******************************************************************************/
var µm = µMatrix;
@ -167,7 +169,7 @@ var toBroaderHostname = function(hostname) {
return '';
}
if ( isIPAddress(hostname) ) {
return '*';
return toBroaderIPAddress(hostname);
}
var pos = hostname.indexOf('.');
if ( pos === -1 ) {
@ -176,6 +178,15 @@ var toBroaderHostname = function(hostname) {
return hostname.slice(pos + 1);
};
var toBroaderIPAddress = function(ipaddress) {
// Can't broaden IPv6 (for now)
if ( ipaddress.charAt(0) === '[' ) {
return '*';
}
var pos = ipaddress.lastIndexOf('.');
return pos !== -1 ? ipaddress.slice(0, pos) : '*';
};
Matrix.toBroaderHostname = toBroaderHostname;
/******************************************************************************/