Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforge.net>2009-02-10 06:10:09 +0300
committerJustin Maggard <jmaggard@users.sourceforge.net>2009-02-10 06:10:09 +0300
commit3702222ee4cc5a1fd8517dec51df7740b0d098e5 (patch)
tree39025035701438b6ac3dd1d82ba5292a88789c4e /upnpglobalvars.c
parent0c4e435d908f15d83ab728d2e7375c4d3e0816dd (diff)
* Allow users to specify the file names and order that the Album Art scanner will search for.
* Lots of changes for inotify support.
Diffstat (limited to 'upnpglobalvars.c')
-rw-r--r--upnpglobalvars.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/upnpglobalvars.c b/upnpglobalvars.c
index 32053c1..1288770 100644
--- a/upnpglobalvars.c
+++ b/upnpglobalvars.c
@@ -17,17 +17,8 @@
/* startup time */
time_t startup_time = 0;
-#if 0
-/* use system uptime */
-int sysuptime = 0;
-
-/* log packets flag */
-int logpackets = 0;
-
-#endif
-
struct runtime_vars_s runtime_vars;
-int runtime_flags = 0;
+int runtime_flags = INOTIFYMASK;
const char * pidfilename = "/var/run/minidlna.pid";
@@ -44,6 +35,8 @@ int n_lan_addr = 0;
struct lan_addr_s lan_addr[MAX_LAN_ADDR];
/* UPnP-A/V [DLNA] */
-sqlite3 *db;
-struct media_dir_s * media_dirs = NULL;
+sqlite3 * db;
char friendly_name[FRIENDLYNAME_MAX_LEN];
+struct media_dir_s * media_dirs = NULL;
+struct album_art_name_s * album_art_names = NULL;
+__u32 updateID = 0;