You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-proxy/tayga/files/tayga-0.9.2-release-reserve...

14 lines
286 B

--- a/addrmap.c
+++ b/addrmap.c
@@ -22,10 +22,6 @@
int validate_ip4_addr(const struct in_addr *a)
{
- /* First octet == 0 */
- if (!(a->s_addr & htonl(0xff000000)))
- return -1;
-
/* First octet == 127 */
if ((a->s_addr & htonl(0xff000000)) == htonl(0x7f000000))
return -1;