RetroArch
igd_desc_parse.h
Go to the documentation of this file.
1 /* $Id: igd_desc_parse.h,v 1.12 2014/11/17 17:19:13 nanard Exp $ */
2 /* Project : miniupnp
3  * http://miniupnp.free.fr/
4  * Author : Thomas Bernard
5  * Copyright (c) 2005-2014 Thomas Bernard
6  * This software is subject to the conditions detailed in the
7  * LICENCE file provided in this distribution.
8  * */
9 #ifndef IGD_DESC_PARSE_H_INCLUDED
10 #define IGD_DESC_PARSE_H_INCLUDED
11 
12 /* Structure to store the result of the parsing of UPnP
13  * descriptions of Internet Gateway Devices */
14 #define MINIUPNPC_URL_MAXSIZE (128)
20  /*char devicetype[MINIUPNPC_URL_MAXSIZE];*/
21 };
22 
23 struct IGDdatas {
27  int level;
28  /*int state;*/
29  /* "urn:schemas-upnp-org:service:WANCommonInterfaceConfig:1" */
31  /* "urn:schemas-upnp-org:service:WANIPConnection:1"
32  * "urn:schemas-upnp-org:service:WANPPPConnection:1" */
34  /* if both WANIPConnection and WANPPPConnection are present */
36  /* "urn:schemas-upnp-org:service:WANIPv6FirewallControl:1" */
38  /* tmp */
40 };
41 
42 void IGDstartelt(void *, const char *, int);
43 void IGDendelt(void *, const char *, int);
44 void IGDdata(void *, const char *, int);
45 #ifdef DEBUG
46 void printIGD(struct IGDdatas *);
47 #endif /* DEBUG */
48 
49 #endif /* IGD_DESC_PARSE_H_INCLUDED */
int level
Definition: igd_desc_parse.h:27
const GLint * first
Definition: glext.h:6478
Definition: igd_desc_parse.h:15
void IGDdata(void *, const char *, int)
Definition: igd_desc_parse.c:64
char presentationurl[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:26
char urlbase[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:25
char controlurl[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:16
char cureltname[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:24
char eventsuburl[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:17
struct IGDdatas_service IPv6FC
Definition: igd_desc_parse.h:37
void IGDstartelt(void *, const char *, int)
Definition: igd_desc_parse.c:15
#define MINIUPNPC_URL_MAXSIZE
Definition: igd_desc_parse.h:14
struct IGDdatas_service CIF
Definition: igd_desc_parse.h:30
struct IGDdatas_service second
Definition: igd_desc_parse.h:35
char scpdurl[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:18
void IGDendelt(void *, const char *, int)
Definition: igd_desc_parse.c:36
struct IGDdatas_service tmp
Definition: igd_desc_parse.h:39
char servicetype[MINIUPNPC_URL_MAXSIZE]
Definition: igd_desc_parse.h:19
Definition: igd_desc_parse.h:23