File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / miniupnpd / upnpurns.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:55:57 2012 UTC (12 years, 1 month ago) by misho
Branches: miniupnpd, elwix, MAIN
CVS tags: v1_6elwix, HEAD
miniupnpd 1.6+patches

    1: /* $Id: upnpurns.h,v 1.1.1.1 2012/05/29 12:55:57 misho Exp $ */
    2: /* MiniUPnP project
    3:  * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
    4:  * (c) 2006-2011 Thomas Bernard 
    5:  * This software is subject to the conditions detailed
    6:  * in the LICENCE file provided within the distribution */
    7: 
    8: #ifndef __UPNPURNS_H__
    9: #define __UPNPURNS_H__
   10: 
   11: #include "config.h"
   12: 
   13: #ifdef IGD_V2
   14: /* IGD v2 */
   15: #define DEVICE_TYPE_IGD     "urn:schemas-upnp-org:device:InternetGatewayDevice:2"
   16: #define DEVICE_TYPE_WAN     "urn:schemas-upnp-org:device:WANDevice:2"
   17: #define DEVICE_TYPE_WANC    "urn:schemas-upnp-org:device:WANConnectionDevice:2"
   18: #define SERVICE_TYPE_WANIPC "urn:schemas-upnp-org:service:WANIPConnection:2"
   19: #define SERVICE_ID_WANIPC   "urn:upnp-org:serviceId:WANIPConn1"
   20: #else
   21: /* IGD v1 */
   22: #define DEVICE_TYPE_IGD     "urn:schemas-upnp-org:device:InternetGatewayDevice:1"
   23: #define DEVICE_TYPE_WAN     "urn:schemas-upnp-org:device:WANDevice:1"
   24: #define DEVICE_TYPE_WANC    "urn:schemas-upnp-org:device:WANConnectionDevice:1"
   25: #define SERVICE_TYPE_WANIPC "urn:schemas-upnp-org:service:WANIPConnection:1"
   26: #define SERVICE_ID_WANIPC   "urn:upnp-org:serviceId:WANIPConn1"
   27: #endif
   28: 
   29: #endif
   30: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>