aboutsummaryrefslogtreecommitdiff
path: root/external/miniupnpc/igd_desc_parse.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/igd_desc_parse.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 '')
-rw-r--r--external/miniupnpc/igd_desc_parse.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/external/miniupnpc/igd_desc_parse.h b/external/miniupnpc/igd_desc_parse.h
deleted file mode 100644
index 0de546b69..000000000
--- a/external/miniupnpc/igd_desc_parse.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* $Id: igd_desc_parse.h,v 1.12 2014/11/17 17:19:13 nanard Exp $ */
-/* Project : miniupnp
- * http://miniupnp.free.fr/
- * Author : Thomas Bernard
- * Copyright (c) 2005-2014 Thomas Bernard
- * This software is subject to the conditions detailed in the
- * LICENCE file provided in this distribution.
- * */
-#ifndef IGD_DESC_PARSE_H_INCLUDED
-#define IGD_DESC_PARSE_H_INCLUDED
-
-/* Structure to store the result of the parsing of UPnP
- * descriptions of Internet Gateway Devices */
-#define MINIUPNPC_URL_MAXSIZE (128)
-struct IGDdatas_service {
- char controlurl[MINIUPNPC_URL_MAXSIZE];
- char eventsuburl[MINIUPNPC_URL_MAXSIZE];
- char scpdurl[MINIUPNPC_URL_MAXSIZE];
- char servicetype[MINIUPNPC_URL_MAXSIZE];
- /*char devicetype[MINIUPNPC_URL_MAXSIZE];*/
-};
-
-struct IGDdatas {
- char cureltname[MINIUPNPC_URL_MAXSIZE];
- char urlbase[MINIUPNPC_URL_MAXSIZE];
- char presentationurl[MINIUPNPC_URL_MAXSIZE];
- int level;
- /*int state;*/
- /* "urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1" */
- struct IGDdatas_service CIF;
- /* "urn:schemas-upnp-org:service:WANIPConnection:1"
- * "urn:schemas-upnp-org:service:WANPPPConnection:1" */
- struct IGDdatas_service first;
- /* if both WANIPConnection and WANPPPConnection are present */
- struct IGDdatas_service second;
- /* "urn:schemas-upnp-org:service:WANIPv6FirewallControl:1" */
- struct IGDdatas_service IPv6FC;
- /* tmp */
- struct IGDdatas_service tmp;
-};
-
-void IGDstartelt(void *, const char *, int);
-void IGDendelt(void *, const char *, int);
-void IGDdata(void *, const char *, int);
-#ifdef DEBUG
-void printIGD(struct IGDdatas *);
-#endif /* DEBUG */
-
-#endif /* IGD_DESC_PARSE_H_INCLUDED */