1/* MiniUPnP project
2 * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
3 * (c) 2006-2008 Thomas Bernard
4 * This software is subject to the conditions detailed
5 * in the LICENCE file provided within the distribution */
6
7#ifndef __MINIDLNAPATH_H__
8#define __MINIDLNAPATH_H__
9
10#include "config.h"
11
12/* Paths and other URLs in the minidlna http server */
13
14#define ROOTDESC_PATH 				"/rootDesc.xml"
15
16#define CONTENTDIRECTORY_PATH			"/ContentDir.xml"
17#define CONTENTDIRECTORY_CONTROLURL		"/ctl/ContentDir"
18#define CONTENTDIRECTORY_EVENTURL		"/evt/ContentDir"
19
20#define CONNECTIONMGR_PATH			"/ConnectionMgr.xml"
21#define CONNECTIONMGR_CONTROLURL		"/ctl/ConnectionMgr"
22#define CONNECTIONMGR_EVENTURL			"/evt/ConnectionMgr"
23
24#define X_MS_MEDIARECEIVERREGISTRAR_PATH	"/X_MS_MediaReceiverRegistrar.xml"
25#define X_MS_MEDIARECEIVERREGISTRAR_CONTROLURL	"/ctl/X_MS_MediaReceiverRegistrar"
26#define X_MS_MEDIARECEIVERREGISTRAR_EVENTURL	"/evt/X_MS_MediaReceiverRegistrar"
27
28#endif
29
30