From dee1fbe394b542c0f9c65c294b7fdd0e699cf82e Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 18 Apr 2014 10:12:31 +0200 Subject: [PATCH] miniupnpd/bsd/ifacewatcher.c: add case RTM_GET --- miniupnpd/bsd/ifacewatcher.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/miniupnpd/bsd/ifacewatcher.c b/miniupnpd/bsd/ifacewatcher.c index 0756f10..53f06d2 100644 --- a/miniupnpd/bsd/ifacewatcher.c +++ b/miniupnpd/bsd/ifacewatcher.c @@ -1,4 +1,4 @@ -/* $Id: ifacewatcher.c,v 1.6 2014/03/31 12:27:14 nanard Exp $ */ +/* $Id: ifacewatcher.c,v 1.7 2014/04/14 11:48:47 nanard Exp $ */ /* Project MiniUPnP * web : http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2011 Thomas BERNARD @@ -73,6 +73,9 @@ ProcessInterfaceWatchNotify(int s) syslog(LOG_DEBUG, " RTM_IFINFO: addrs=%x flags=%x index=%hu", ifm->ifm_addrs, ifm->ifm_flags, ifm->ifm_index); break; + case RTM_GET: /* Report Metrics */ + syslog(LOG_DEBUG, " RTM_GET"); + break; #ifdef RTM_IFANNOUNCE case RTM_IFANNOUNCE: /* iface arrival/departure */ ifanm = (struct if_announcemsghdr *)buf;