1: /* $Id: upnpdescstrings.h,v 1.1.1.2 2013/07/22 00:32:35 misho Exp $ */
2: /* miniupnp project
3: * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
4: * (c) 2006-2012 Thomas Bernard
5: * This software is subject to the coditions detailed in
6: * the LICENCE file provided within the distribution */
7: #ifndef UPNPDESCSTRINGS_H_INCLUDED
8: #define UPNPDESCSTRINGS_H_INCLUDED
9:
10: #include "config.h"
11:
12: /* strings used in the root device xml description */
13: /*#define ROOTDEV_FRIENDLYNAME OS_NAME " router"*/
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/"
27: #define WANDEV_UPC "000000000000"
28: /* UPC is 12 digit (barcode) */
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/"
37: #define WANCDEV_UPC "000000000000"
38: /* UPC is 12 digit (barcode) */
39:
40: #endif
41:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>