2016-09-17 08:11:02 +00:00
|
|
|
/* $Id: miniupnpc.h,v 1.50 2016/04/19 21:06:21 nanard Exp $ */
|
2014-04-09 12:14:35 +00:00
|
|
|
/* Project: miniupnp
|
|
|
|
* http://miniupnp.free.fr/
|
|
|
|
* Author: Thomas Bernard
|
2016-03-21 11:37:54 +00:00
|
|
|
* Copyright (c) 2005-2016 Thomas Bernard
|
2014-04-09 12:14:35 +00:00
|
|
|
* This software is subjects to the conditions detailed
|
|
|
|
* in the LICENCE file provided within this distribution */
|
|
|
|
#ifndef MINIUPNPC_H_INCLUDED
|
|
|
|
#define MINIUPNPC_H_INCLUDED
|
|
|
|
|
2015-12-30 07:56:25 +00:00
|
|
|
#include "miniupnpc_declspec.h"
|
2014-04-09 12:14:35 +00:00
|
|
|
#include "igd_desc_parse.h"
|
2015-12-30 07:56:25 +00:00
|
|
|
#include "upnpdev.h"
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
/* error codes : */
|
|
|
|
#define UPNPDISCOVER_SUCCESS (0)
|
|
|
|
#define UPNPDISCOVER_UNKNOWN_ERROR (-1)
|
|
|
|
#define UPNPDISCOVER_SOCKET_ERROR (-101)
|
|
|
|
#define UPNPDISCOVER_MEMORY_ERROR (-102)
|
|
|
|
|
|
|
|
/* versions : */
|
2016-09-17 08:11:02 +00:00
|
|
|
#define MINIUPNPC_VERSION "2.0"
|
2016-03-21 11:37:54 +00:00
|
|
|
#define MINIUPNPC_API_VERSION 16
|
2015-12-30 07:56:25 +00:00
|
|
|
|
|
|
|
/* Source port:
|
|
|
|
Using "1" as an alias for 1900 for backwards compatability
|
|
|
|
(presuming one would have used that for the "sameport" parameter) */
|
|
|
|
#define UPNP_LOCAL_PORT_ANY 0
|
|
|
|
#define UPNP_LOCAL_PORT_SAME 1
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Structures definitions : */
|
|
|
|
struct UPNParg { const char * elt; const char * val; };
|
|
|
|
|
|
|
|
char *
|
|
|
|
simpleUPnPcommand(int, const char *, const char *,
|
|
|
|
const char *, struct UPNParg *,
|
|
|
|
int *);
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
* multicast interface for sending SSDP discover packets.
|
2015-12-30 07:56:25 +00:00
|
|
|
* If localport is set to UPNP_LOCAL_PORT_SAME(1) SSDP packets will be sent
|
|
|
|
* from the source port 1900 (same as destination port), if set to
|
|
|
|
* UPNP_LOCAL_PORT_ANY(0) system assign a source port, any other value will
|
|
|
|
* be attempted as the source port.
|
|
|
|
* "searchalltypes" parameter is useful when searching several types,
|
|
|
|
* if 0, the discovery will stop with the first type returning results.
|
|
|
|
* TTL should default to 2. */
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC struct UPNPDev *
|
2014-04-09 12:14:35 +00:00
|
|
|
upnpDiscover(int delay, const char * multicastif,
|
2015-12-30 07:56:25 +00:00
|
|
|
const char * minissdpdsock, int localport,
|
|
|
|
int ipv6, unsigned char ttl,
|
2014-04-09 12:14:35 +00:00
|
|
|
int * error);
|
2015-12-30 07:56:25 +00:00
|
|
|
|
|
|
|
MINIUPNP_LIBSPEC struct UPNPDev *
|
|
|
|
upnpDiscoverAll(int delay, const char * multicastif,
|
|
|
|
const char * minissdpdsock, int localport,
|
|
|
|
int ipv6, unsigned char ttl,
|
|
|
|
int * error);
|
|
|
|
|
|
|
|
MINIUPNP_LIBSPEC struct UPNPDev *
|
|
|
|
upnpDiscoverDevice(const char * device, int delay, const char * multicastif,
|
|
|
|
const char * minissdpdsock, int localport,
|
|
|
|
int ipv6, unsigned char ttl,
|
|
|
|
int * error);
|
|
|
|
|
|
|
|
MINIUPNP_LIBSPEC struct UPNPDev *
|
|
|
|
upnpDiscoverDevices(const char * const deviceTypes[],
|
|
|
|
int delay, const char * multicastif,
|
|
|
|
const char * minissdpdsock, int localport,
|
|
|
|
int ipv6, unsigned char ttl,
|
|
|
|
int * error,
|
|
|
|
int searchalltypes);
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
/* parserootdesc() :
|
|
|
|
* parse root XML description of a UPnP device and fill the IGDdatas
|
|
|
|
* structure. */
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC void parserootdesc(const char *, int, struct IGDdatas *);
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
/* structure used to get fast access to urls
|
|
|
|
* controlURL: controlURL of the WANIPConnection
|
|
|
|
* ipcondescURL: url of the description of the WANIPConnection
|
|
|
|
* controlURL_CIF: controlURL of the WANCommonInterfaceConfig
|
|
|
|
* controlURL_6FC: controlURL of the WANIPv6FirewallControl
|
|
|
|
*/
|
|
|
|
struct UPNPUrls {
|
|
|
|
char * controlURL;
|
|
|
|
char * ipcondescURL;
|
|
|
|
char * controlURL_CIF;
|
|
|
|
char * controlURL_6FC;
|
|
|
|
char * rootdescURL;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
*/
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC int
|
2014-04-09 12:14:35 +00:00
|
|
|
UPNP_GetValidIGD(struct UPNPDev * devlist,
|
|
|
|
struct UPNPUrls * urls,
|
|
|
|
struct IGDdatas * data,
|
|
|
|
char * lanaddr, int lanaddrlen);
|
|
|
|
|
|
|
|
/* UPNP_GetIGDFromUrl()
|
|
|
|
* Used when skipping the discovery process.
|
2015-12-30 07:56:25 +00:00
|
|
|
* When succeding, urls, data, and lanaddr arguments are set.
|
2014-04-09 12:14:35 +00:00
|
|
|
* return value :
|
|
|
|
* 0 - Not ok
|
|
|
|
* 1 - OK */
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC int
|
2014-04-09 12:14:35 +00:00
|
|
|
UPNP_GetIGDFromUrl(const char * rootdescurl,
|
|
|
|
struct UPNPUrls * urls,
|
|
|
|
struct IGDdatas * data,
|
|
|
|
char * lanaddr, int lanaddrlen);
|
|
|
|
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC void
|
2014-04-09 12:14:35 +00:00
|
|
|
GetUPNPUrls(struct UPNPUrls *, struct IGDdatas *,
|
|
|
|
const char *, unsigned int);
|
|
|
|
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC void
|
2014-04-09 12:14:35 +00:00
|
|
|
FreeUPNPUrls(struct UPNPUrls *);
|
|
|
|
|
|
|
|
/* return 0 or 1 */
|
2014-10-02 16:43:13 +00:00
|
|
|
MINIUPNP_LIBSPEC int UPNPIGD_IsConnected(struct UPNPUrls *, struct IGDdatas *);
|
2014-04-09 12:14:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|