aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/ConfigGlobal.hxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-24ConfigGlobal: add config_find_block()Max Kellermann1-0/+11
Merge duplicate code.
2014-01-24Config*: move to config/Max Kellermann1-0/+0
2014-01-13copyright year 2014Max Kellermann1-1/+1
2013-10-17fs/Path: rename to AllocatedPathMax Kellermann1-6/+7
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.
2013-10-15gcc.h: rename to Compiler.hMax Kellermann1-1/+1
2013-09-12Listen: Allow tilde paths for socket.Maarten de Vries1-0/+8
2013-09-05PlaylistPlugin, ConfigGlobal: use nullptr instead of NULLMax Kellermann1-4/+2
2013-09-05conf.h: move constants to ConfigDefaults.hxxMax Kellermann1-4/+0
2013-09-04util/Error: new error passing libraryMax Kellermann1-3/+3
Replaces GLib's GError.
2013-08-07ConfigPath: return a Path objectMax Kellermann1-7/+4
Migrate all callers to use Path directly, instead of doing the conversion in each caller.
2013-08-07*: remove remaining __cplusplus checksMax Kellermann1-14/+0
2013-01-30ConfigFile: move code to ConfigGlobal.cxxMax Kellermann1-28/+19
2013-01-30conf: move struct definitions to ConfigData.hxxMax Kellermann1-73/+1
2013-01-30ConfigFile: add enum ConfigOptionMax Kellermann1-61/+12
Look up top-level config options by enum (= integer), not by name string.
2013-01-29ConfigFile, CommandLine: use the Path classMax Kellermann1-3/+11
2013-01-07decoder_api.h, ...: add "extern C"Max Kellermann1-0/+4
2011-09-09conf: export config_param_free()Max Kellermann1-0/+3
2011-09-09conf: _get_next_param() returns a const pointerMax Kellermann1-2/+2
No writers.
2011-09-09conf: add config_dup_block_path()Max Kellermann1-0/+9
2011-09-09conf: turn config_get_path() into config_dup_path()Max Kellermann1-10/+8
config_get_path() was somewhat flawed, because it pretended to be a function, when it really had a side effect. The second flaw was that it did not return the parser error, instead it aborted the whole process, which is bad style. The new function returns a duplicated (modified) string that must be freed by the caller, and returns a GError on failure.
2011-09-09conf: get_block_param() returns a const pointerMax Kellermann1-1/+1
No caller needs to write.
2011-09-09conf: move duplicate check to _read_name_value()Max Kellermann1-2/+2
config_add_block_param() cannot fail, which makes it easier to use.
2011-09-09conf: add gcc optimization attributesMax Kellermann1-0/+3
2011-03-29despotify: Add support utilitiesSimon Kagstrom1-0/+3
Used to connect and authenticate to despotify. Provides a singleton session and a desptoify-track-to-tags function.
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-09-25conf: Whitespace cosmeticsThomas Jansen1-9/+9
2010-05-30filter/replay_gain: added option "replaygain_limit"Daniel Seuthe1-0/+1
2010-04-13inotify: added setting "auto_update_depth"Max Kellermann1-0/+1
Limits the depth of the watched directories. This is useful to keep resource usage down and speed up MPD startup.
2010-04-13conf: added function config_get_unsigned()Max Kellermann1-0/+4
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-14Initial filter chain and filter configuration for outputs.Albin Eldstål-Damlin1-0/+3
2009-10-26mpd.conf: new bool config value for enabling/disabling inotify updateViliam Mateicka1-0/+1
2009-10-13playlist_list: pass configuration to playlist pluginsMax Kellermann1-0/+1
This patch completes the configuration support.
2009-09-24conf: handle fatal errors with GErrorMax Kellermann1-4/+5
Don't call g_error(), which will abort the process and dump core. This patch does not affect all the config_get_X() functions. These need some more refactoring.
2009-08-24conf: removed the deprecated "error_file" optionMax Kellermann1-1/+0
This option was deprecated by the 0.15 release. This patch makes this option invalid.
2009-07-19conf: replaced gcc "const" attribute with "pure"Michal Nazarewicz1-13/+22
The functions were not "const" (they examined values pointed by arguments passed to them, quoting gcc's doc: "Note that a function that has pointer arguments and examines the data pointed to must _not_ be declared 'const'.") but rather "pure" and still not all of them. Note also, that even some of the functions declared "pure" are not pure, however, due to reasons stated in source code the attribute has been kept.
2009-07-19daemon: added "group" configuration optionMichal Nazarewicz1-0/+1
The "group" configuration option is similar to "user" as it sets user set what group MPD shall run as. With "user" option, MPD changed GID to the GID of the user, however, more control could be desired. Moreover, the patch changes the way of checking whether no setuid(2)/setgid(2) is required -- previously user names were compered, now UID and GIDs are compered (ie. the one we already have (getuid(2)/getgid(2)) with the one we want to change to).
2009-07-15conf: added the gcc "const" attribute to some functionsMax Kellermann1-0/+13
Add the "const" attribute to functions when their return value only depends on parameters. This allows gcc to eliminate some function calls.
2009-07-03conf: added config_quark()Max Kellermann1-0/+10
This GQuark will be used for GErrors related to malformed configuration.
2009-06-25conf: log unused/unknown block parametersMax Kellermann1-0/+6
2009-06-25conf: added "used" flag to struct block_paramMax Kellermann1-0/+12
2009-06-25conf: make get_bool() return a boolMax Kellermann1-3/+0
Instead of returning an artificial three-state integer, return a "success" value and put the boolean value into a "bool" pointer. That's a little bit more overhead, but an API which looks more natural.
2009-06-25conf: removed config_add_param()Max Kellermann1-7/+0
This function is unused.
2009-06-25volume: removed support for legacy mixer configurationMax Kellermann1-2/+0
The top-level "mixer_device" and "mixer_control" options have been deprecated by MPD 0.15, and it's safe to remove them in MPD 0.16.
2009-06-25Preamp for missing replay-gainDaniel Seuthe1-0/+1
2009-06-03conf: make config_param.num_block_params unsignedMax Kellermann1-1/+1
2009-06-03conf: eliminated CamelCaseMax Kellermann1-3/+4
Renamed all remaining CamelCase functions.
2009-03-30conf: config_param_free() not necessary for export.Avuton Olrich1-2/+0
2009-03-13all: Update copyright header.Avuton Olrich1-6/+7
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-03-02input: pass config_param to input_plugin.init()Max Kellermann1-0/+1
Allow input plugins to configure with an "input" block in mpd.conf. Also allow the user to disable a plugin completely.