aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/miniupnpc/upnpdev.c
diff options
context:
space:
mode:
authorFabio Alessandrelli2018-06-07 02:10:48 +0200
committerGitHub2018-06-07 02:10:48 +0200
commitb4c65093d72bf9b48cc3ddce50a0d913d3d75ed3 (patch)
tree50dba3db0348294fb88852b92bf9a66d57c70451 /thirdparty/miniupnpc/upnpdev.c
parentaaf93f92d8ba9bef29f42b590782fc6f0fad6fdc (diff)
parentc21da40de5fb20ade5b07dcc961c9364ba3815af (diff)
downloadgodot-b4c65093d72bf9b48cc3ddce50a0d913d3d75ed3.tar.gz
godot-b4c65093d72bf9b48cc3ddce50a0d913d3d75ed3.tar.zst
godot-b4c65093d72bf9b48cc3ddce50a0d913d3d75ed3.zip
Diffstat (limited to 'thirdparty/miniupnpc/upnpdev.c')
-rw-r--r--thirdparty/miniupnpc/upnpdev.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/thirdparty/miniupnpc/upnpdev.c b/thirdparty/miniupnpc/upnpdev.c
new file mode 100644
index 000000000..d89a9934c
--- /dev/null
+++ b/thirdparty/miniupnpc/upnpdev.c
@@ -0,0 +1,23 @@
+/* $Id: upnpdev.c,v 1.1 2015/08/28 12:14:19 nanard Exp $ */
+/* Project : miniupnp
+ * Web : http://miniupnp.free.fr/
+ * Author : Thomas BERNARD
+ * copyright (c) 2005-2015 Thomas Bernard
+ * This software is subjet to the conditions detailed in the
+ * provided LICENSE file. */
+#include <stdlib.h>
+#include "upnpdev.h"
+
+/* freeUPNPDevlist() should be used to
+ * free the chained list returned by upnpDiscover() */
+void freeUPNPDevlist(struct UPNPDev * devlist)
+{
+ struct UPNPDev * next;
+ while(devlist)
+ {
+ next = devlist->pNext;
+ free(devlist);
+ devlist = next;
+ }
+}
+