1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

allow AF_INET6 in libmpdclient since mpd supports it

Thanks to Kaleb Elwert (belak, IRC) who reported the problem and tested
the fix.
This commit is contained in:
Phil Sutter 2009-11-20 22:49:57 +01:00
parent b85b0d5aab
commit d7f9e64824
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,6 @@
2009-11-20
* Allow for mpd connections to use IPv6
2009-11-19
* Added support for $pid_read and $pid_write

View File

@ -129,13 +129,9 @@ static int mpd_connect(mpd_Connection *connection, const char *host, int port,
struct addrinfo *res = NULL;
struct addrinfo *addrinfo = NULL;
/* Setup hints
*
* XXX: limit address family to PF_INET here.
* MPD does not support IPv6 yet, so if GAI returns
* an IPv6 address, the later connect() will fail. */
/* Setup hints */
hints.ai_flags = AI_ADDRCONFIG;
hints.ai_family = PF_INET;
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
hints.ai_addrlen = 0;