Annotation of embedaddon/miniupnpd/miniupnpdpath.h, revision 1.1

1.1     ! misho       1: /* $Id: miniupnpdpath.h,v 1.5 2008/02/21 12:54:18 nanard Exp $ */
        !             2: /* MiniUPnP project
        !             3:  * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
        !             4:  * (c) 2006-2008 Thomas Bernard
        !             5:  * This software is subject to the conditions detailed
        !             6:  * in the LICENCE file provided within the distribution */
        !             7: 
        !             8: #ifndef __MINIUPNPDPATH_H__
        !             9: #define __MINIUPNPDPATH_H__
        !            10: 
        !            11: #include "config.h"
        !            12: 
        !            13: /* Paths and other URLs in the miniupnpd http server */
        !            14: 
        !            15: #define ROOTDESC_PATH          "/rootDesc.xml"
        !            16: 
        !            17: #ifdef HAS_DUMMY_SERVICE
        !            18: #define DUMMY_PATH                     "/dummy.xml"
        !            19: #endif
        !            20: 
        !            21: #define WANCFG_PATH                    "/WANCfg.xml"
        !            22: #define WANCFG_CONTROLURL      "/ctl/CmnIfCfg"
        !            23: #define WANCFG_EVENTURL                "/evt/CmnIfCfg"
        !            24: 
        !            25: #define WANIPC_PATH                    "/WANIPCn.xml"
        !            26: #define WANIPC_CONTROLURL      "/ctl/IPConn"
        !            27: #define WANIPC_EVENTURL                "/evt/IPConn"
        !            28: 
        !            29: #ifdef ENABLE_L3F_SERVICE
        !            30: #define L3F_PATH                       "/L3F.xml"
        !            31: #define L3F_CONTROLURL         "/ctl/L3F"
        !            32: #define L3F_EVENTURL           "/evt/L3F"
        !            33: #endif
        !            34: 
        !            35: #endif
        !            36: 

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