From: dlg Date: Thu, 8 Feb 2018 21:55:34 +0000 (+0000) Subject: handle SIOCGLIFPHYTTL and say that the ttl is always "copied" X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=52cbef69132eb9b148769da358f071fd787ef9e9;p=openbsd handle SIOCGLIFPHYTTL and say that the ttl is always "copied" --- diff --git a/sys/net/if_mobileip.c b/sys/net/if_mobileip.c index 0eacbeb8420..38e740ab8b9 100644 --- a/sys/net/if_mobileip.c +++ b/sys/net/if_mobileip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_mobileip.c,v 1.3 2018/02/07 06:02:01 dlg Exp $ */ +/* $OpenBSD: if_mobileip.c,v 1.4 2018/02/08 21:55:34 dlg Exp $ */ /* * Copyright (c) 2016 David Gwynne @@ -389,6 +389,10 @@ mobileip_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) error = mobileip_del_tunnel(sc); break; + case SIOCGLIFPHYTTL: + ifr->ifr_ttl = -1; + break; + case SIOCSLIFPHYRTABLE: if (ISSET(ifp->if_flags, IFF_RUNNING)) { error = EBUSY;