Annotation of embedaddon/miniupnpd/upnpdescstrings.h, revision 1.1.1.2
1.1.1.2 ! misho 1: /* $Id: upnpdescstrings.h,v 1.8 2012/09/27 16:00:10 nanard Exp $ */
1.1 misho 2: /* miniupnp project
3: * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
1.1.1.2 ! misho 4: * (c) 2006-2012 Thomas Bernard
1.1 misho 5: * This software is subject to the coditions detailed in
6: * the LICENCE file provided within the distribution */
1.1.1.2 ! misho 7: #ifndef UPNPDESCSTRINGS_H_INCLUDED
! 8: #define UPNPDESCSTRINGS_H_INCLUDED
1.1 misho 9:
10: #include "config.h"
11:
12: /* strings used in the root device xml description */
1.1.1.2 ! misho 13: /*#define ROOTDEV_FRIENDLYNAME OS_NAME " router"*/
1.1 misho 14: #define ROOTDEV_MANUFACTURER OS_NAME
15: #define ROOTDEV_MANUFACTURERURL OS_URL
16: #define ROOTDEV_MODELNAME OS_NAME " router"
17: #define ROOTDEV_MODELDESCRIPTION OS_NAME " router"
18: #define ROOTDEV_MODELURL OS_URL
19:
20: #define WANDEV_FRIENDLYNAME "WANDevice"
21: #define WANDEV_MANUFACTURER "MiniUPnP"
22: #define WANDEV_MANUFACTURERURL "http://miniupnp.free.fr/"
23: #define WANDEV_MODELNAME "WAN Device"
24: #define WANDEV_MODELDESCRIPTION "WAN Device"
25: #define WANDEV_MODELNUMBER UPNP_VERSION
26: #define WANDEV_MODELURL "http://miniupnp.free.fr/"
1.1.1.2 ! misho 27: #define WANDEV_UPC "000000000000"
! 28: /* UPC is 12 digit (barcode) */
1.1 misho 29:
30: #define WANCDEV_FRIENDLYNAME "WANConnectionDevice"
31: #define WANCDEV_MANUFACTURER WANDEV_MANUFACTURER
32: #define WANCDEV_MANUFACTURERURL WANDEV_MANUFACTURERURL
33: #define WANCDEV_MODELNAME "MiniUPnPd"
34: #define WANCDEV_MODELDESCRIPTION "MiniUPnP daemon"
35: #define WANCDEV_MODELNUMBER UPNP_VERSION
36: #define WANCDEV_MODELURL "http://miniupnp.free.fr/"
1.1.1.2 ! misho 37: #define WANCDEV_UPC "000000000000"
! 38: /* UPC is 12 digit (barcode) */
1.1 misho 39:
40: #endif
41:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>