Annotation of embedaddon/miniupnpd/upnpdescstrings.h, revision 1.1.1.1

1.1       misho       1: /* $Id: upnpdescstrings.h,v 1.5 2007/02/09 10:12:52 nanard Exp $ */
                      2: /* miniupnp project
                      3:  * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
                      4:  * (c) 2006 Thomas Bernard
                      5:  * This software is subject to the coditions detailed in
                      6:  * the LICENCE file provided within the distribution */
                      7: #ifndef __UPNPDESCSTRINGS_H__
                      8: #define __UPNPDESCSTRINGS_H__
                      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                                     "MINIUPNPD"
                     28: 
                     29: #define WANCDEV_FRIENDLYNAME           "WANConnectionDevice"
                     30: #define WANCDEV_MANUFACTURER           WANDEV_MANUFACTURER
                     31: #define WANCDEV_MANUFACTURERURL                WANDEV_MANUFACTURERURL
                     32: #define WANCDEV_MODELNAME                      "MiniUPnPd"
                     33: #define WANCDEV_MODELDESCRIPTION       "MiniUPnP daemon"
                     34: #define WANCDEV_MODELNUMBER                    UPNP_VERSION
                     35: #define WANCDEV_MODELURL                       "http://miniupnp.free.fr/"
                     36: #define WANCDEV_UPC                                    "MINIUPNPD"
                     37: 
                     38: #endif
                     39: 

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