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:
parent
b85b0d5aab
commit
d7f9e64824
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user