From 3bf25346201330ed457e171200e3a1cbeee1f6c5 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 20 Apr 2012 00:06:24 +0200 Subject: [PATCH] Add comment about which IP6FirewallControl methods are required or optional --- miniupnpd/upnpsoap.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/miniupnpd/upnpsoap.c b/miniupnpd/upnpsoap.c index 235a88c..acb6921 100644 --- a/miniupnpd/upnpsoap.c +++ b/miniupnpd/upnpsoap.c @@ -1,4 +1,4 @@ -/* $Id: upnpsoap.c,v 1.92 2012/04/14 22:12:09 nanard Exp $ */ +/* $Id: upnpsoap.c,v 1.93 2012/04/19 22:04:48 nanard Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2006-2012 Thomas Bernard @@ -1777,13 +1777,13 @@ soapMethods[] = #endif #ifdef ENABLE_6FC_SERVICE /* WANIPv6FirewallControl */ - { "GetFirewallStatus", GetFirewallStatus}, - { "AddPinhole", AddPinhole}, - { "UpdatePinhole", UpdatePinhole}, - { "GetOutboundPinholeTimeout", GetOutboundPinholeTimeout}, - { "DeletePinhole", DeletePinhole}, - { "CheckPinholeWorking", CheckPinholeWorking}, - { "GetPinholePackets", GetPinholePackets}, + { "GetFirewallStatus", GetFirewallStatus}, /* Required */ + { "AddPinhole", AddPinhole}, /* Required */ + { "UpdatePinhole", UpdatePinhole}, /* Required */ + { "GetOutboundPinholeTimeout", GetOutboundPinholeTimeout}, /* Optional */ + { "DeletePinhole", DeletePinhole}, /* Required */ + { "CheckPinholeWorking", CheckPinholeWorking}, /* Optional */ + { "GetPinholePackets", GetPinholePackets}, /* Required */ #endif { 0, 0 } };