2012-03-21 02:25:11 +00:00
|
|
|
/* $Id: miniupnpc.h,v 1.25 2011/10/09 16:17:29 nanard Exp $ */
|
2007-11-06 16:02:50 +00:00
|
|
|
/* Project: miniupnp
|
|
|
|
* http://miniupnp.free.fr/
|
|
|
|
* Author: Thomas Bernard
|
2011-07-26 01:36:30 +00:00
|
|
|
* Copyright (c) 2005-2011 Thomas Bernard
|
2007-11-06 16:02:50 +00:00
|
|
|
* This software is subjects to the conditions detailed
|
|
|
|
* in the LICENCE file provided within this distribution */
|
|
|
|
#ifndef __MINIUPNPC_H__
|
|
|
|
#define __MINIUPNPC_H__
|
|
|
|
|
|
|
|
#include "declspec.h"
|
|
|
|
#include "igd_desc_parse.h"
|
|
|
|
|
2011-07-26 01:36:30 +00:00
|
|
|
/* error codes : */
|
|
|
|
#define UPNPDISCOVER_SUCCESS (0)
|
|
|
|
#define UPNPDISCOVER_UNKNOWN_ERROR (-1)
|
|
|
|
#define UPNPDISCOVER_SOCKET_ERROR (-101)
|
|
|
|
#define UPNPDISCOVER_MEMORY_ERROR (-102)
|
|
|
|
|
2012-03-21 02:25:11 +00:00
|
|
|
/* versions : */
|
2012-05-30 18:15:33 +00:00
|
|
|
#define MINIUPNPC_VERSION "1.7"
|
2012-03-21 02:25:11 +00:00
|
|
|
#define MINIUPNPC_API_VERSION 8
|
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-12-20 20:18:22 +00:00
|
|
|
/* Structures definitions : */
|
2007-11-06 16:02:50 +00:00
|
|
|
struct UPNParg { const char * elt; const char * val; };
|
|
|
|
|
2011-07-26 01:36:30 +00:00
|
|
|
char *
|
|
|
|
simpleUPnPcommand(int, const char *, const char *,
|
|
|
|
const char *, struct UPNParg *,
|
|
|
|
int *);
|
2007-11-06 16:02:50 +00:00
|
|
|
|
|
|
|
struct UPNPDev {
|
|
|
|
struct UPNPDev * pNext;
|
|
|
|
char * descURL;
|
|
|
|
char * st;
|
|
|
|
char buffer[2];
|
|
|
|
};
|
|
|
|
|
2007-12-20 20:18:22 +00:00
|
|
|
/* upnpDiscover()
|
|
|
|
* discover UPnP devices on the network.
|
|
|
|
* The discovered devices are returned as a chained list.
|
|
|
|
* It is up to the caller to free the list with freeUPNPDevlist().
|
|
|
|
* delay (in millisecond) is the maximum time for waiting any device
|
|
|
|
* response.
|
|
|
|
* If available, device list will be obtained from MiniSSDPd.
|
|
|
|
* Default path for minissdpd socket will be used if minissdpdsock argument
|
|
|
|
* is NULL.
|
|
|
|
* If multicastif is not NULL, it will be used instead of the default
|
2008-10-04 15:10:24 +00:00
|
|
|
* multicast interface for sending SSDP discover packets.
|
|
|
|
* If sameport is not null, SSDP packets will be sent from the source port
|
|
|
|
* 1900 (same as destination port) otherwise system assign a source port. */
|
2011-07-26 01:36:30 +00:00
|
|
|
LIBSPEC struct UPNPDev *
|
|
|
|
upnpDiscover(int delay, const char * multicastif,
|
|
|
|
const char * minissdpdsock, int sameport,
|
|
|
|
int ipv6,
|
|
|
|
int * error);
|
2007-12-20 20:18:22 +00:00
|
|
|
/* freeUPNPDevlist()
|
|
|
|
* free list returned by upnpDiscover() */
|
2007-11-06 16:02:50 +00:00
|
|
|
LIBSPEC void freeUPNPDevlist(struct UPNPDev * devlist);
|
|
|
|
|
2007-12-20 20:18:22 +00:00
|
|
|
/* parserootdesc() :
|
|
|
|
* parse root XML description of a UPnP device and fill the IGDdatas
|
|
|
|
* structure. */
|
2007-11-06 16:02:50 +00:00
|
|
|
LIBSPEC void parserootdesc(const char *, int, struct IGDdatas *);
|
|
|
|
|
|
|
|
/* structure used to get fast access to urls
|
|
|
|
* controlURL: controlURL of the WANIPConnection
|
|
|
|
* ipcondescURL: url of the description of the WANIPConnection
|
2007-12-20 20:18:22 +00:00
|
|
|
* controlURL_CIF: controlURL of the WANCommonInterfaceConfig
|
2011-07-26 01:36:30 +00:00
|
|
|
* controlURL_6FC: controlURL of the WANIPv6FirewallControl
|
2007-11-06 16:02:50 +00:00
|
|
|
*/
|
|
|
|
struct UPNPUrls {
|
|
|
|
char * controlURL;
|
|
|
|
char * ipcondescURL;
|
|
|
|
char * controlURL_CIF;
|
2011-07-26 01:36:30 +00:00
|
|
|
char * controlURL_6FC;
|
2012-03-21 02:25:11 +00:00
|
|
|
char * rootdescURL;
|
2007-11-06 16:02:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* UPNP_GetValidIGD() :
|
|
|
|
* return values :
|
|
|
|
* 0 = NO IGD found
|
|
|
|
* 1 = A valid connected IGD has been found
|
|
|
|
* 2 = A valid IGD has been found but it reported as
|
|
|
|
* not connected
|
|
|
|
* 3 = an UPnP device has been found but was not recognized as an IGD
|
|
|
|
*
|
|
|
|
* In any non zero return case, the urls and data structures
|
|
|
|
* passed as parameters are set. Donc forget to call FreeUPNPUrls(urls) to
|
|
|
|
* free allocated memory.
|
|
|
|
*/
|
|
|
|
LIBSPEC int
|
|
|
|
UPNP_GetValidIGD(struct UPNPDev * devlist,
|
|
|
|
struct UPNPUrls * urls,
|
|
|
|
struct IGDdatas * data,
|
|
|
|
char * lanaddr, int lanaddrlen);
|
|
|
|
|
|
|
|
/* UPNP_GetIGDFromUrl()
|
|
|
|
* Used when skipping the discovery process.
|
|
|
|
* return value :
|
|
|
|
* 0 - Not ok
|
|
|
|
* 1 - OK */
|
|
|
|
LIBSPEC int
|
|
|
|
UPNP_GetIGDFromUrl(const char * rootdescurl,
|
|
|
|
struct UPNPUrls * urls,
|
|
|
|
struct IGDdatas * data,
|
|
|
|
char * lanaddr, int lanaddrlen);
|
|
|
|
|
|
|
|
LIBSPEC void GetUPNPUrls(struct UPNPUrls *, struct IGDdatas *, const char *);
|
|
|
|
|
|
|
|
LIBSPEC void FreeUPNPUrls(struct UPNPUrls *);
|
|
|
|
|
2009-10-11 01:32:58 +00:00
|
|
|
/* return 0 or 1 */
|
|
|
|
LIBSPEC int UPNPIGD_IsConnected(struct UPNPUrls *, struct IGDdatas *);
|
|
|
|
|
|
|
|
|
2007-11-06 16:02:50 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|