// *****************************************************
// UPnP.h - Integration of UPnP useful functionalities
// v1.0: 07/08
// Integrated in Scol Voyager v5.1a1
// *****************************************************


#ifndef UPNP_H
#define UPNP_H

#include "scolPrerequisites.h"
#define UPNP_MAXRETRY				3

#define UPNP_UDP            (1<<0)			// Use UDP protocol
#define UPNP_TCP            (1<<1)			// Use TCP protocol

#define UPNP_SAFE           (1<<0)			// Do not overwrite existing port mapping when opening a port
#define UPNP_FORCE          (1<<1)			// Overwrite existing port mapping when opening a port


#endif