1/* MiniUPnP project
2 * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
3 * author: Ryan Wagoner
4 *
5 * Copyright (c) 2006, Thomas Bernard
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *     * Redistributions of source code must retain the above copyright
11 *       notice, this list of conditions and the following disclaimer.
12 *     * Redistributions in binary form must reproduce the above copyright
13 *       notice, this list of conditions and the following disclaimer in the
14 *       documentation and/or other materials provided with the distribution.
15 *     * The name of the author may not be used to endorse or promote products
16 *       derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30#ifndef __OPTIONS_H__
31#define __OPTIONS_H__
32
33#include "config.h"
34
35/* enum of option available in the miniupnpd.conf */
36enum upnpconfigoptions {
37	UPNP_INVALID = 0,
38	UPNPIFNAME = 1,			/* ext_ifname */
39	UPNPPORT,			/* port */
40	UPNPPRESENTATIONURL,		/* presentation_url */
41	UPNPNOTIFY_INTERVAL,		/* notify_interval */
42	UPNPUUID,			/* uuid */
43	UPNPSERIAL,			/* serial */
44	UPNPMODEL_NAME,			/* model_name */
45	UPNPMODEL_NUMBER,		/* model_number */
46	UPNPFRIENDLYNAME,		/* how the system should show up to DLNA clients */
47	UPNPMEDIADIR,			/* directory to search for UPnP-A/V content */
48	UPNPALBUMART_NAMES,		/* list of '/'-delimited file names to check for album art */
49	UPNPINOTIFY,			/* enable inotify on the media directories */
50	UPNPDBDIR,			/* base directory to store the database and album art cache */
51	UPNPLOGDIR,			/* base directory to store the log file */
52	UPNPLOGLEVEL,			/* logging verbosity */
53	UPNPMINISSDPDSOCKET,		/* minissdpdsocket */
54	ENABLE_TIVO,			/* enable support for streaming images and music to TiVo */
55	ENABLE_DLNA_STRICT,		/* strictly adhere to DLNA specs */
56	ROOT_CONTAINER,			/* root ObjectID (instead of "0") */
57	USER_ACCOUNT,			/* user account to run as */
58	UPNPMEDIADIRADMIN,			/*add by lawrence save admin folder  */
59	FORCE_SORT_CRITERIA,		/* force sorting by a given sort criteria */
60	MAX_CONNECTIONS,		/* maximum number of simultaneous connections */
61	MERGE_MEDIA_DIRS		/* don't add an extra directory level when there are multiple media dirs */
62};
63
64/* readoptionsfile()
65 * parse and store the option file values
66 * returns: 0 success, -1 failure */
67int
68readoptionsfile(const char * fname);
69
70/* freeoptions()
71 * frees memory allocated to option values */
72void
73freeoptions(void);
74
75#define MAX_OPTION_VALUE_LEN (200)
76struct option
77{
78	enum upnpconfigoptions id;
79	char value[MAX_OPTION_VALUE_LEN];
80};
81
82extern struct option * ary_options;
83extern int num_options;
84
85#endif
86
87