Module Name:    src
Committed By:   christos
Date:           Sat Aug 29 17:41:14 UTC 2020

Modified Files:
        src/sys/netinet: in.c

Log Message:
Partially revert previous: set RTF_HOST regardless of mask for point-to-point
links. Unbreaks IPSEC/L2TP configurations.


To generate a diff of this commit:
cvs rdiff -u -r1.237 -r1.238 src/sys/netinet/in.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/in.c
diff -u src/sys/netinet/in.c:1.237 src/sys/netinet/in.c:1.238
--- src/sys/netinet/in.c:1.237	Thu Aug 20 17:21:32 2020
+++ src/sys/netinet/in.c	Sat Aug 29 13:41:14 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: in.c,v 1.237 2020/08/20 21:21:32 riastradh Exp $	*/
+/*	$NetBSD: in.c,v 1.238 2020/08/29 17:41:14 christos Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -91,7 +91,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in.c,v 1.237 2020/08/20 21:21:32 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in.c,v 1.238 2020/08/29 17:41:14 christos Exp $");
 
 #include "arp.h"
 
@@ -1231,11 +1231,9 @@ in_ifinit(struct ifnet *ifp, struct in_i
 		ia->ia_dstaddr = ia->ia_addr;
 		flags |= RTF_HOST;
 	} else if (ifp->if_flags & IFF_POINTOPOINT) {
-		if (in_mask2len(&ia->ia_sockmask.sin_addr) == 32) {
-			if (ia->ia_dstaddr.sin_family != AF_INET)
-				return (0);
-			flags |= RTF_HOST;
-		}
+		if (ia->ia_dstaddr.sin_family != AF_INET)
+			return (0);
+		flags |= RTF_HOST;
 	}
 
 	/* Add the local route to the address */

Reply via email to