From e793219fbae56376ed77bef87040a163dfb8dd36 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 22 Oct 2013 10:58:04 +0200 Subject: add mpd host configuration options --- config.def.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index f135a8d..48de332 100644 --- a/config.def.h +++ b/config.def.h @@ -10,3 +10,15 @@ #define TEXT_STOP "Stopped playback" #define TEXT_NONE "No action received yet." #define TEXT_UNKNOWN "(unknown)" + +/* how to connect to mpd host ? + * MPD_HOST is the server's host name, IP address or Unix socket path. If the + * resolver returns more than one IP address for a host name, this functions + * tries all of them until one accepts the connection. NULL is allowed here, + * which will connect to the default host. + * MPD_PORT is the TCP port to connect to, 0 for default port. If "host" is + * a Unix socket path, this parameter is ignored. + * MPD_TIMEOUT is the timeout in milliseconds, 0 for the default timeout. */ +#define MPD_HOST NULL +#define MPD_PORT 0 +#define MPD_TIMEOUT 0 -- cgit v1.2.3-54-g00ecf