fixed typo in previous check-in

This commit is contained in:
Arvid Norberg 2009-08-02 00:43:12 +00:00
parent a0c89d9215
commit 797f1e5ae5
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ namespace libtorrent
return ((ip & 0xff000000) == 0x0a000000 // 10.x.x.x
|| (ip & 0xfff00000) == 0xac100000 // 172.16.x.x
|| (ip & 0xffff0000) == 0xc0a80000 // 192.168.x.x
|| (ip & 0xa9fe0000) == 0xa9fe0000); // 169.254.x.x
|| (ip & 0xffff0000) == 0xa9fe0000); // 169.254.x.x
}
bool is_loopback(address const& addr)