diff options
author | 2001-11-23 19:21:36 +0000 | |
---|---|---|
committer | 2001-11-23 19:21:36 +0000 | |
commit | e0d6e1a239f08cc7ba5ac119d230906fd426da3c (patch) | |
tree | b53379b46cc809b2781fff349504d734d359e9b9 | |
parent | When writing messages to the routing socket, round sockaddr sizes (diff) | |
download | wireguard-openbsd-e0d6e1a239f08cc7ba5ac119d230906fd426da3c.tar.xz wireguard-openbsd-e0d6e1a239f08cc7ba5ac119d230906fd426da3c.zip |
Remove the hack that ensures that rt_Update() works on FreeBSD. Now
that the ncpaddr code doesn't create default routes with non-zero
masks, everything works as it should.
-rw-r--r-- | usr.sbin/ppp/ppp/route.c | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/usr.sbin/ppp/ppp/route.c b/usr.sbin/ppp/ppp/route.c index 1c36189641c..630eaab06c6 100644 --- a/usr.sbin/ppp/ppp/route.c +++ b/usr.sbin/ppp/ppp/route.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: route.c,v 1.21 2001/11/23 17:12:20 brian Exp $ + * $OpenBSD: route.c,v 1.22 2001/11/23 19:21:36 brian Exp $ */ #include <sys/param.h> @@ -867,29 +867,11 @@ rt_Update(struct bundle *bundle, const struct sockaddr *dst, rtmes.m_rtm.rtm_addrs |= RTA_DST; p += memcpy_roundup(p, dst, dst->sa_len); } - -#ifdef __FreeBSD__ - /* - * In order to update the default route under FreeBSD, only the destination - * address should be specified. If the (empty) mask or the gateway - * address are used, the update fails... - * Conversely, if the gateway and mask are omitted under OpenBSD, the - * update will fail. - */ - if (dst) - ncprange_setsa(&ncpdst, dst, mask); - else - ncprange_init(&ncpdst); - - if (!ncprange_isdefault(&ncpdst)) -#endif - { - rtmes.m_rtm.rtm_addrs |= RTA_GATEWAY; - p += memcpy_roundup(p, gw, gw->sa_len); - if (mask) { - rtmes.m_rtm.rtm_addrs |= RTA_NETMASK; - p += memcpy_roundup(p, mask, mask->sa_len); - } + rtmes.m_rtm.rtm_addrs |= RTA_GATEWAY; + p += memcpy_roundup(p, gw, gw->sa_len); + if (mask) { + rtmes.m_rtm.rtm_addrs |= RTA_NETMASK; + p += memcpy_roundup(p, mask, mask->sa_len); } rtmes.m_rtm.rtm_msglen = p - (char *)&rtmes; |