I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 11ab7fc5 authored by zzz's avatar zzz
Browse files

add comment

parent 716bff41
No related branches found
No related tags found
No related merge requests found
...@@ -134,6 +134,7 @@ public abstract class TransportUtil { ...@@ -134,6 +134,7 @@ public abstract class TransportUtil {
int a1 = addr[1] & 0xFF; int a1 = addr[1] & 0xFF;
// Carrier Grade NAT RFC 6598 // Carrier Grade NAT RFC 6598
if (a0 == 100 && a1 >= 64 && a1 <= 127) return false; if (a0 == 100 && a1 >= 64 && a1 <= 127) return false;
// DHCP autoconfig RFC 3927
if (a0 == 169 && a1 == 254) return false; if (a0 == 169 && a1 == 254) return false;
if (a0 == 172 && a1 >= 16 && a1 <= 31) return false; if (a0 == 172 && a1 >= 16 && a1 <= 31) return false;
if (a0 == 192) { if (a0 == 192) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment