aboutsummaryrefslogtreecommitdiff
path: root/external/miniupnpc/upnpdev.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-04-21 22:01:54 +0200
committerRiccardo Spagni <ric@spagni.net>2018-04-21 22:01:54 +0200
commit8fdf645397654956b74d6ddcd79f94bfa7bf2c5f (patch)
tree507f8764f20cd3254f5a411e6619e24fd12489bd /external/miniupnpc/upnpdev.h
parentMerge pull request #3579 (diff)
parentBuild: remove UPnP definition from snap (diff)
downloadmonero-8fdf645397654956b74d6ddcd79f94bfa7bf2c5f.tar.xz
Merge pull request #3670
19e01378 Build: remove UPnP definition from snap (anonimal) 6b853980 Build: update CMake and p2p for in-tree miniupnp (anonimal) 859db52f CMake: update new location of in-tree miniupnpc (anonimal) f21df05c Build: add miniupnp submodule (anonimal) 10685648 Build: remove in-tree miniupnpc (anonimal)
Diffstat (limited to 'external/miniupnpc/upnpdev.h')
-rw-r--r--external/miniupnpc/upnpdev.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/external/miniupnpc/upnpdev.h b/external/miniupnpc/upnpdev.h
deleted file mode 100644
index f49fbe17c..000000000
--- a/external/miniupnpc/upnpdev.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id: upnpdev.h,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. */
-#ifndef UPNPDEV_H_INCLUDED
-#define UPNPDEV_H_INCLUDED
-
-#include "miniupnpc_declspec.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct UPNPDev {
- struct UPNPDev * pNext;
- char * descURL;
- char * st;
- unsigned int scope_id;
- char * usn;
- char buffer[3];
-};
-
-/* freeUPNPDevlist()
- * free list returned by upnpDiscover() */
-MINIUPNP_LIBSPEC void freeUPNPDevlist(struct UPNPDev * devlist);
-
-
-#ifdef __cplusplus
-}
-#endif
-
-
-#endif /* UPNPDEV_H_INCLUDED */