* MiniDLNA can now pass the DLNA Conformance Test! * Dependence on libdlna has been removed, and the ffmpeg libs are used directly. * Lots of unused code has been cleaned up. * File transfers will now be forked off into a new process, so as not to tie up the server when sending data.
23 lines
691 B
C
23 lines
691 B
C
/* miniupnp project
|
|
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
|
|
* (c) 2006 Thomas Bernard
|
|
* This software is subject to the coditions detailed in
|
|
* the LICENCE file provided within the distribution */
|
|
#ifndef __UPNPDESCSTRINGS_H__
|
|
#define __UPNPDESCSTRINGS_H__
|
|
|
|
#include "config.h"
|
|
|
|
/* strings used in the root device xml description */
|
|
#ifdef READYNAS
|
|
#define ROOTDEV_MANUFACTURER "NETGEAR"
|
|
#else
|
|
#define ROOTDEV_MANUFACTURER "Justin Maggard"
|
|
#endif
|
|
#define ROOTDEV_MANUFACTURERURL OS_URL
|
|
#define ROOTDEV_MODELNAME "Windows Media Connect compatible (minidlna)"
|
|
#define ROOTDEV_MODELDESCRIPTION OS_NAME " *ReadyNAS dev DLNA"
|
|
#define ROOTDEV_MODELURL OS_URL
|
|
|
|
#endif
|