Add missing comment block
This commit is contained in:
parent
1b2f45cc59
commit
4c76274ba6
1 changed files with 4 additions and 0 deletions
|
@ -2662,6 +2662,10 @@ sub extract_ipv6 {
|
||||||
return $ip;
|
return $ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
## Regex that matches an IPv6 address that is probably globally routable.
|
||||||
|
## Accepts embedded leading zeros.
|
||||||
|
######################################################################
|
||||||
my $regex_ipv6_global = qr{
|
my $regex_ipv6_global = qr{
|
||||||
(?! # Is not one of the following addresses:
|
(?! # Is not one of the following addresses:
|
||||||
0{0,4}: # ::/16 is assumed to never contain globaly routable addresses
|
0{0,4}: # ::/16 is assumed to never contain globaly routable addresses
|
||||||
|
|
Loading…
Reference in a new issue