<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- /dev/null
+++ b/libmpdclient.c
@@ -0,0 +1,1957 @@
+/* libmpdclient
+   (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
+   This project's homepage is: http://www.musicpd.org
+
+   Redistribution and use in source and binary forms, with or without
+   modification, are permitted provided that the following conditions
+   are met:
+
+   - Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+   - Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+   - Neither the name of the Music Player Daemon nor the names of its
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+
+   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#include "libmpdclient.h"
+
+#include &lt;errno.h&gt;
+#include &lt;ctype.h&gt;
+#include &lt;sys/types.h&gt;
+#include &lt;stdio.h&gt;
+#include &lt;sys/param.h&gt;
+#include &lt;string.h&gt;
+#include &lt;unistd.h&gt;
+#include &lt;stdlib.h&gt;
+#include &lt;fcntl.h&gt;
+#include &lt;limits.h&gt;
+
+#ifdef WIN32
+#  include &lt;ws2tcpip.h&gt;
+#  include &lt;winsock.h&gt;
+#else
+#  include &lt;netinet/in.h&gt;
+#  include &lt;arpa/inet.h&gt;
+#  include &lt;sys/socket.h&gt;
+#  include &lt;netdb.h&gt;
+#endif
+
+/* (bits+1)/3 (plus the sign character) */
+#define INTLEN      ((sizeof(int)       * CHAR_BIT + 1) / 3 + 1)
+#define LONGLONGLEN ((sizeof(long long) * CHAR_BIT + 1) / 3 + 1)
+
+#define COMMAND_LIST    1
+#define COMMAND_LIST_OK 2
+
+#ifndef MPD_NO_GAI
+#  ifdef AI_ADDRCONFIG
+#    define MPD_HAVE_GAI
+#  endif
+#endif
+
+#ifndef MSG_DONTWAIT
+#  define MSG_DONTWAIT 0
+#endif
+
+#ifdef WIN32
+#  define SELECT_ERRNO_IGNORE   (errno == WSAEINTR || errno == WSAEINPROGRESS)
+#  define SENDRECV_ERRNO_IGNORE SELECT_ERRNO_IGNORE
+#else
+#  define SELECT_ERRNO_IGNORE   (errno == EINTR)
+#  define SENDRECV_ERRNO_IGNORE (errno == EINTR || errno == EAGAIN)
+#  define winsock_dll_error(c)  0
+#  define closesocket(s)        close(s)
+#  define WSACleanup()          do { /* nothing */ } while (0)
+#endif
+
+#ifdef WIN32
+static int winsock_dll_error(mpd_Connection * connection)
+{
+    WSADATA wsaData;
+    if ((WSAStartup(MAKEWORD(2, 2), &amp;wsaData)) != 0 || LOBYTE(wsaData.wVersion) != 2 || HIBYTE(wsaData.wVersion) != 2) {
+	strcpy(connection-&gt;errorStr, "Could not find usable WinSock DLL.");
+	connection-&gt;error = MPD_ERROR_SYSTEM;
+	return 1;
+    }
+    return 0;
+}
+
+static int do_connect_fail(mpd_Connection * connection, const struct sockaddr *serv_addr, int addrlen)
+{
+    int iMode = 1;		/* 0 = blocking, else non-blocking */
+    ioctlsocket(connection-&gt;sock, FIONBIO, (u_long FAR *) &amp; iMode);
+    return (connect(connection-&gt;sock, serv_addr, addrlen) == SOCKET_ERROR &amp;&amp; WSAGetLastError() != WSAEWOULDBLOCK);
+}
+#else				/* !WIN32 (sane operating systems) */
+static int do_connect_fail(mpd_Connection * connection, const struct sockaddr *serv_addr, int addrlen)
+{
+    int flags = fcntl(connection-&gt;sock, F_GETFL, 0);
+    fcntl(connection-&gt;sock, F_SETFL, flags | O_NONBLOCK);
+    return (connect(connection-&gt;sock, serv_addr, addrlen) &lt; 0 &amp;&amp; errno != EINPROGRESS);
+}
+#endif				/* !WIN32 */
+
+#ifdef MPD_HAVE_GAI
+static int mpd_connect(mpd_Connection * connection, const char *host, int port, float timeout)
+{
+    int error;
+    char service[INTLEN + 1];
+    struct addrinfo hints;
+    struct addrinfo *res = NULL;
+    struct addrinfo *addrinfo = NULL;
+
+	/**
+	 * Setup hints
+	 */
+    hints.ai_flags = AI_ADDRCONFIG;
+    hints.ai_family = PF_UNSPEC;
+    hints.ai_socktype = SOCK_STREAM;
+    hints.ai_protocol = IPPROTO_TCP;
+    hints.ai_addrlen = 0;
+    hints.ai_addr = NULL;
+    hints.ai_canonname = NULL;
+    hints.ai_next = NULL;
+
+    snprintf(service, sizeof(service), "%i", port);
+
+    error = getaddrinfo(host, service, &amp;hints, &amp;addrinfo);
+
+    if (error) {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "host \"%s\" not found: %s", host, gai_strerror(error));
+	connection-&gt;error = MPD_ERROR_UNKHOST;
+	return -1;
+    }
+
+    for (res = addrinfo; res; res = res-&gt;ai_next) {
+	/* create socket */
+	connection-&gt;sock = socket(res-&gt;ai_family, SOCK_STREAM, res-&gt;ai_protocol);
+	if (connection-&gt;sock &lt; 0) {
+	    snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "problems creating socket: %s", strerror(errno));
+	    connection-&gt;error = MPD_ERROR_SYSTEM;
+	    freeaddrinfo(addrinfo);
+	    return -1;
+	}
+
+	mpd_setConnectionTimeout(connection, timeout);
+
+	/* connect stuff */
+	if (do_connect_fail(connection, res-&gt;ai_addr, res-&gt;ai_addrlen)) {
+	    /* try the next address family */
+	    closesocket(connection-&gt;sock);
+	    connection-&gt;sock = -1;
+	    continue;
+	}
+    }
+
+    freeaddrinfo(addrinfo);
+
+    if (connection-&gt;sock &lt; 0) {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH,
+		 "problems connecting to \"%s\" on port %i: %s", host, port, strerror(errno));
+	connection-&gt;error = MPD_ERROR_CONNPORT;
+
+	return -1;
+    }
+
+    return 0;
+}
+#else				/* !MPD_HAVE_GAI */
+static int mpd_connect(mpd_Connection * connection, const char *host, int port, float timeout)
+{
+    struct hostent *he;
+    struct sockaddr *dest;
+    int destlen;
+    struct sockaddr_in sin;
+
+    if (!(he = gethostbyname(host))) {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "host \"%s\" not found", host);
+	connection-&gt;error = MPD_ERROR_UNKHOST;
+	return -1;
+    }
+
+    memset(&amp;sin, 0, sizeof(struct sockaddr_in));
+    /*dest.sin_family = he-&gt;h_addrtype; */
+    sin.sin_family = AF_INET;
+    sin.sin_port = htons(port);
+
+    switch (he-&gt;h_addrtype) {
+    case AF_INET:
+	memcpy((char *) &amp;sin.sin_addr.s_addr, (char *) he-&gt;h_addr, he-&gt;h_length);
+	dest = (struct sockaddr *) &amp;sin;
+	destlen = sizeof(struct sockaddr_in);
+	break;
+    default:
+	strcpy(connection-&gt;errorStr, "address type is not IPv4");
+	connection-&gt;error = MPD_ERROR_SYSTEM;
+	return -1;
+	break;
+    }
+
+    if ((connection-&gt;sock = socket(dest-&gt;sa_family, SOCK_STREAM, 0)) &lt; 0) {
+	strcpy(connection-&gt;errorStr, "problems creating socket");
+	connection-&gt;error = MPD_ERROR_SYSTEM;
+	return -1;
+    }
+
+    mpd_setConnectionTimeout(connection, timeout);
+
+    /* connect stuff */
+    if (do_connect_fail(connection, dest, destlen)) {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH,
+		 "problems connecting to \"%s\" on port" " %i", host, port);
+	connection-&gt;error = MPD_ERROR_CONNPORT;
+	return -1;
+    }
+
+    return 0;
+}
+#endif				/* !MPD_HAVE_GAI */
+
+char *mpdTagItemKeys[MPD_TAG_NUM_OF_ITEM_TYPES] = {
+    "Artist",
+    "Album",
+    "Title",
+    "Track",
+    "Name",
+    "Genre",
+    "Date",
+    "Composer",
+    "Performer",
+    "Comment",
+    "Disc",
+    "Filename",
+    "Any"
+};
+
+static char *mpd_sanitizeArg(const char *arg)
+{
+    size_t i;
+    char *ret;
+    register const char *c;
+    register char *rc;
+
+    /* instead of counting in that loop above, just
+     * use a bit more memory and half running time
+     */
+    ret = malloc(strlen(arg) * 2 + 1);
+
+    c = arg;
+    rc = ret;
+    for (i = strlen(arg) + 1; i != 0; --i) {
+	if (*c == '"' || *c == '\\')
+	    *rc++ = '\\';
+	*(rc++) = *(c++);
+    }
+
+    return ret;
+}
+
+static mpd_ReturnElement *mpd_newReturnElement(const char *name, const char *value)
+{
+    mpd_ReturnElement *ret = malloc(sizeof(mpd_ReturnElement));
+
+    ret-&gt;name = strdup(name);
+    ret-&gt;value = strdup(value);
+
+    return ret;
+}
+
+static void mpd_freeReturnElement(mpd_ReturnElement * re)
+{
+    free(re-&gt;name);
+    free(re-&gt;value);
+    free(re);
+}
+
+void mpd_setConnectionTimeout(mpd_Connection * connection, float timeout)
+{
+    connection-&gt;timeout.tv_sec = (int) timeout;
+    connection-&gt;timeout.tv_usec = (int) (timeout * 1e6 - connection-&gt;timeout.tv_sec * 1000000 + 0.5);
+}
+
+static int mpd_parseWelcome(mpd_Connection * connection, const char *host, int port, char *rt, char *output)
+{
+    char *tmp;
+    char *test;
+    int i;
+
+    if (strncmp(output, MPD_WELCOME_MESSAGE, strlen(MPD_WELCOME_MESSAGE))) {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH,
+		 "mpd not running on port %i on host \"%s\"", port, host);
+	connection-&gt;error = MPD_ERROR_NOTMPD;
+	return 1;
+    }
+
+    tmp = &amp;output[strlen(MPD_WELCOME_MESSAGE)];
+
+    for (i = 0; i &lt; 3; i++) {
+	if (tmp)
+	    connection-&gt;version[i] = strtol(tmp, &amp;test, 10);
+
+	if (!tmp || (test[0] != '.' &amp;&amp; test[0] != '\0')) {
+	    snprintf(connection-&gt;errorStr,
+		     MPD_ERRORSTR_MAX_LENGTH,
+		     "error parsing version number at " "\"%s\"", &amp;output[strlen(MPD_WELCOME_MESSAGE)]);
+	    connection-&gt;error = MPD_ERROR_NOTMPD;
+	    return 1;
+	}
+	tmp = ++test;
+    }
+
+    return 0;
+}
+
+mpd_Connection *mpd_newConnection(const char *host, int port, float timeout)
+{
+    int err;
+    char *rt;
+    char *output = NULL;
+    mpd_Connection *connection = malloc(sizeof(mpd_Connection));
+    struct timeval tv;
+    fd_set fds;
+    strcpy(connection-&gt;buffer, "");
+    connection-&gt;buflen = 0;
+    connection-&gt;bufstart = 0;
+    strcpy(connection-&gt;errorStr, "");
+    connection-&gt;error = 0;
+    connection-&gt;doneProcessing = 0;
+    connection-&gt;commandList = 0;
+    connection-&gt;listOks = 0;
+    connection-&gt;doneListOk = 0;
+    connection-&gt;returnElement = NULL;
+    connection-&gt;request = NULL;
+
+    if (winsock_dll_error(connection))
+	return connection;
+
+    if (mpd_connect(connection, host, port, timeout) &lt; 0)
+	return connection;
+
+    while (!(rt = strstr(connection-&gt;buffer, "\n"))) {
+	tv.tv_sec = connection-&gt;timeout.tv_sec;
+	tv.tv_usec = connection-&gt;timeout.tv_usec;
+	FD_ZERO(&amp;fds);
+	FD_SET(connection-&gt;sock, &amp;fds);
+	if ((err = select(connection-&gt;sock + 1, &amp;fds, NULL, NULL, &amp;tv)) == 1) {
+	    int readed;
+	    readed = recv(connection-&gt;sock,
+			  &amp;(connection-&gt;buffer[connection-&gt;buflen]), MPD_BUFFER_MAX_LENGTH - connection-&gt;buflen, 0);
+	    if (readed &lt;= 0) {
+		snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH,
+			 "problems getting a response from" " \"%s\" on port %i : %s", host, port, strerror(errno));
+		connection-&gt;error = MPD_ERROR_NORESPONSE;
+		return connection;
+	    }
+	    connection-&gt;buflen += readed;
+	    connection-&gt;buffer[connection-&gt;buflen] = '\0';
+	} else if (err &lt; 0) {
+	    if (SELECT_ERRNO_IGNORE)
+		continue;
+	    snprintf(connection-&gt;errorStr,
+		     MPD_ERRORSTR_MAX_LENGTH, "problems connecting to \"%s\" on port" " %i", host, port);
+	    connection-&gt;error = MPD_ERROR_CONNPORT;
+	    return connection;
+	} else {
+	    snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH,
+		     "timeout in attempting to get a response from" " \"%s\" on port %i", host, port);
+	    connection-&gt;error = MPD_ERROR_NORESPONSE;
+	    return connection;
+	}
+    }
+
+    *rt = '\0';
+    output = strdup(connection-&gt;buffer);
+    strcpy(connection-&gt;buffer, rt + 1);
+    connection-&gt;buflen = strlen(connection-&gt;buffer);
+
+    if (mpd_parseWelcome(connection, host, port, rt, output) == 0)
+	connection-&gt;doneProcessing = 1;
+
+    free(output);
+
+    return connection;
+}
+
+void mpd_clearError(mpd_Connection * connection)
+{
+    connection-&gt;error = 0;
+    connection-&gt;errorStr[0] = '\0';
+}
+
+void mpd_closeConnection(mpd_Connection * connection)
+{
+    closesocket(connection-&gt;sock);
+    if (connection-&gt;returnElement)
+	free(connection-&gt;returnElement);
+    if (connection-&gt;request)
+	free(connection-&gt;request);
+    free(connection);
+    WSACleanup();
+}
+
+static void mpd_executeCommand(mpd_Connection * connection, char *command)
+{
+    int ret;
+    struct timeval tv;
+    fd_set fds;
+    char *commandPtr = command;
+    int commandLen = strlen(command);
+
+    if (!connection-&gt;doneProcessing &amp;&amp; !connection-&gt;commandList) {
+	strcpy(connection-&gt;errorStr, "not done processing current command");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    mpd_clearError(connection);
+
+    FD_ZERO(&amp;fds);
+    FD_SET(connection-&gt;sock, &amp;fds);
+    tv.tv_sec = connection-&gt;timeout.tv_sec;
+    tv.tv_usec = connection-&gt;timeout.tv_usec;
+
+    while ((ret = select(connection-&gt;sock + 1, NULL, &amp;fds, NULL, &amp;tv) == 1) || (ret == -1 &amp;&amp; SELECT_ERRNO_IGNORE)) {
+	ret = send(connection-&gt;sock, commandPtr, commandLen, MSG_DONTWAIT);
+	if (ret &lt;= 0) {
+	    if (SENDRECV_ERRNO_IGNORE)
+		continue;
+	    snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "problems giving command \"%s\"", command);
+	    connection-&gt;error = MPD_ERROR_SENDING;
+	    return;
+	} else {
+	    commandPtr += ret;
+	    commandLen -= ret;
+	}
+
+	if (commandLen &lt;= 0)
+	    break;
+    }
+
+    if (commandLen &gt; 0) {
+	perror("");
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "timeout sending command \"%s\"", command);
+	connection-&gt;error = MPD_ERROR_TIMEOUT;
+	return;
+    }
+
+    if (!connection-&gt;commandList)
+	connection-&gt;doneProcessing = 0;
+    else if (connection-&gt;commandList == COMMAND_LIST_OK) {
+	connection-&gt;listOks++;
+    }
+}
+
+static void mpd_getNextReturnElement(mpd_Connection * connection)
+{
+    char *output = NULL;
+    char *rt = NULL;
+    char *name = NULL;
+    char *value = NULL;
+    fd_set fds;
+    struct timeval tv;
+    char *tok = NULL;
+    int readed;
+    char *bufferCheck = NULL;
+    int err;
+    int pos;
+
+    if (connection-&gt;returnElement)
+	mpd_freeReturnElement(connection-&gt;returnElement);
+    connection-&gt;returnElement = NULL;
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	strcpy(connection-&gt;errorStr, "already done processing current command");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    bufferCheck = connection-&gt;buffer + connection-&gt;bufstart;
+    while (connection-&gt;bufstart &gt;= connection-&gt;buflen || !(rt = strchr(bufferCheck, '\n'))) {
+	if (connection-&gt;buflen &gt;= MPD_BUFFER_MAX_LENGTH) {
+	    memmove(connection-&gt;buffer,
+		    connection-&gt;buffer + connection-&gt;bufstart, connection-&gt;buflen - connection-&gt;bufstart + 1);
+	    connection-&gt;buflen -= connection-&gt;bufstart;
+	    connection-&gt;bufstart = 0;
+	}
+	if (connection-&gt;buflen &gt;= MPD_BUFFER_MAX_LENGTH) {
+	    strcpy(connection-&gt;errorStr, "buffer overrun");
+	    connection-&gt;error = MPD_ERROR_BUFFEROVERRUN;
+	    connection-&gt;doneProcessing = 1;
+	    connection-&gt;doneListOk = 0;
+	    return;
+	}
+	bufferCheck = connection-&gt;buffer + connection-&gt;buflen;
+	tv.tv_sec = connection-&gt;timeout.tv_sec;
+	tv.tv_usec = connection-&gt;timeout.tv_usec;
+	FD_ZERO(&amp;fds);
+	FD_SET(connection-&gt;sock, &amp;fds);
+	if ((err = select(connection-&gt;sock + 1, &amp;fds, NULL, NULL, &amp;tv) == 1)) {
+	    readed = recv(connection-&gt;sock,
+			  connection-&gt;buffer + connection-&gt;buflen,
+			  MPD_BUFFER_MAX_LENGTH - connection-&gt;buflen, MSG_DONTWAIT);
+	    if (readed &lt; 0 &amp;&amp; SENDRECV_ERRNO_IGNORE) {
+		continue;
+	    }
+	    if (readed &lt;= 0) {
+		strcpy(connection-&gt;errorStr, "connection" " closed");
+		connection-&gt;error = MPD_ERROR_CONNCLOSED;
+		connection-&gt;doneProcessing = 1;
+		connection-&gt;doneListOk = 0;
+		return;
+	    }
+	    connection-&gt;buflen += readed;
+	    connection-&gt;buffer[connection-&gt;buflen] = '\0';
+	} else if (err &lt; 0 &amp;&amp; SELECT_ERRNO_IGNORE)
+	    continue;
+	else {
+	    strcpy(connection-&gt;errorStr, "connection timeout");
+	    connection-&gt;error = MPD_ERROR_TIMEOUT;
+	    connection-&gt;doneProcessing = 1;
+	    connection-&gt;doneListOk = 0;
+	    return;
+	}
+    }
+
+    *rt = '\0';
+    output = connection-&gt;buffer + connection-&gt;bufstart;
+    connection-&gt;bufstart = rt - connection-&gt;buffer + 1;
+
+    if (strcmp(output, "OK") == 0) {
+	if (connection-&gt;listOks &gt; 0) {
+	    strcpy(connection-&gt;errorStr, "expected more list_OK's");
+	    connection-&gt;error = 1;
+	}
+	connection-&gt;listOks = 0;
+	connection-&gt;doneProcessing = 1;
+	connection-&gt;doneListOk = 0;
+	return;
+    }
+
+    if (strcmp(output, "list_OK") == 0) {
+	if (!connection-&gt;listOks) {
+	    strcpy(connection-&gt;errorStr, "got an unexpected list_OK");
+	    connection-&gt;error = 1;
+	} else {
+	    connection-&gt;doneListOk = 1;
+	    connection-&gt;listOks--;
+	}
+	return;
+    }
+
+    if (strncmp(output, "ACK", strlen("ACK")) == 0) {
+	char *test;
+	char *needle;
+	int val;
+
+	strcpy(connection-&gt;errorStr, output);
+	connection-&gt;error = MPD_ERROR_ACK;
+	connection-&gt;errorCode = MPD_ACK_ERROR_UNK;
+	connection-&gt;errorAt = MPD_ERROR_AT_UNK;
+	connection-&gt;doneProcessing = 1;
+	connection-&gt;doneListOk = 0;
+
+	needle = strchr(output, '[');
+	if (!needle)
+	    return;
+	val = strtol(needle + 1, &amp;test, 10);
+	if (*test != '@')
+	    return;
+	connection-&gt;errorCode = val;
+	val = strtol(test + 1, &amp;test, 10);
+	if (*test != ']')
+	    return;
+	connection-&gt;errorAt = val;
+	return;
+    }
+
+    tok = strchr(output, ':');
+    if (!tok)
+	return;
+    pos = tok - output;
+    value = ++tok;
+    name = output;
+    name[pos] = '\0';
+
+    if (value[0] == ' ') {
+	connection-&gt;returnElement = mpd_newReturnElement(name, &amp;(value[1]));
+    } else {
+	snprintf(connection-&gt;errorStr, MPD_ERRORSTR_MAX_LENGTH, "error parsing: %s:%s", name, value);
+	connection-&gt;error = 1;
+    }
+}
+
+void mpd_finishCommand(mpd_Connection * connection)
+{
+    while (!connection-&gt;doneProcessing) {
+	if (connection-&gt;doneListOk)
+	    connection-&gt;doneListOk = 0;
+	mpd_getNextReturnElement(connection);
+    }
+}
+
+static void mpd_finishListOkCommand(mpd_Connection * connection)
+{
+    while (!connection-&gt;doneProcessing &amp;&amp; connection-&gt;listOks &amp;&amp; !connection-&gt;doneListOk) {
+	mpd_getNextReturnElement(connection);
+    }
+}
+
+int mpd_nextListOkCommand(mpd_Connection * connection)
+{
+    mpd_finishListOkCommand(connection);
+    if (!connection-&gt;doneProcessing)
+	connection-&gt;doneListOk = 0;
+    if (connection-&gt;listOks == 0 || connection-&gt;doneProcessing)
+	return -1;
+    return 0;
+}
+
+void mpd_sendStatusCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "status\n");
+}
+
+mpd_Status *mpd_getStatus(mpd_Connection * connection)
+{
+    mpd_Status *status;
+
+    /*mpd_executeCommand(connection,"status\n");
+
+       if(connection-&gt;error) return NULL; */
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    if (!connection-&gt;returnElement)
+	mpd_getNextReturnElement(connection);
+
+    status = malloc(sizeof(mpd_Status));
+    status-&gt;volume = -1;
+    status-&gt;repeat = 0;
+    status-&gt;random = 0;
+    status-&gt;playlist = -1;
+    status-&gt;playlistLength = -1;
+    status-&gt;state = -1;
+    status-&gt;song = 0;
+    status-&gt;songid = 0;
+    status-&gt;elapsedTime = 0;
+    status-&gt;totalTime = 0;
+    status-&gt;bitRate = 0;
+    status-&gt;sampleRate = 0;
+    status-&gt;bits = 0;
+    status-&gt;channels = 0;
+    status-&gt;crossfade = -1;
+    status-&gt;error = NULL;
+    status-&gt;updatingDb = 0;
+
+    if (connection-&gt;error) {
+	free(status);
+	return NULL;
+    }
+    while (connection-&gt;returnElement) {
+	mpd_ReturnElement *re = connection-&gt;returnElement;
+	if (strcmp(re-&gt;name, "volume") == 0) {
+	    status-&gt;volume = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "repeat") == 0) {
+	    status-&gt;repeat = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "random") == 0) {
+	    status-&gt;random = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "playlist") == 0) {
+	    status-&gt;playlist = strtol(re-&gt;value, NULL, 10);
+	} else if (strcmp(re-&gt;name, "playlistlength") == 0) {
+	    status-&gt;playlistLength = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "bitrate") == 0) {
+	    status-&gt;bitRate = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "state") == 0) {
+	    if (strcmp(re-&gt;value, "play") == 0) {
+		status-&gt;state = MPD_STATUS_STATE_PLAY;
+	    } else if (strcmp(re-&gt;value, "stop") == 0) {
+		status-&gt;state = MPD_STATUS_STATE_STOP;
+	    } else if (strcmp(re-&gt;value, "pause") == 0) {
+		status-&gt;state = MPD_STATUS_STATE_PAUSE;
+	    } else {
+		status-&gt;state = MPD_STATUS_STATE_UNKNOWN;
+	    }
+	} else if (strcmp(re-&gt;name, "song") == 0) {
+	    status-&gt;song = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "songid") == 0) {
+	    status-&gt;songid = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "time") == 0) {
+	    char *tok = strchr(re-&gt;value, ':');
+	    /* the second strchr below is a safety check */
+	    if (tok &amp;&amp; (strchr(tok, 0) &gt; (tok + 1))) {
+		/* atoi stops at the first non-[0-9] char: */
+		status-&gt;elapsedTime = atoi(re-&gt;value);
+		status-&gt;totalTime = atoi(tok + 1);
+	    }
+	} else if (strcmp(re-&gt;name, "error") == 0) {
+	    status-&gt;error = strdup(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "xfade") == 0) {
+	    status-&gt;crossfade = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "updating_db") == 0) {
+	    status-&gt;updatingDb = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "audio") == 0) {
+	    char *tok = strchr(re-&gt;value, ':');
+	    if (tok &amp;&amp; (strchr(tok, 0) &gt; (tok + 1))) {
+		status-&gt;sampleRate = atoi(re-&gt;value);
+		status-&gt;bits = atoi(++tok);
+		tok = strchr(tok, ':');
+		if (tok &amp;&amp; (strchr(tok, 0) &gt; (tok + 1)))
+		    status-&gt;channels = atoi(tok + 1);
+	    }
+	}
+
+	mpd_getNextReturnElement(connection);
+	if (connection-&gt;error) {
+	    free(status);
+	    return NULL;
+	}
+    }
+
+    if (connection-&gt;error) {
+	free(status);
+	return NULL;
+    } else if (status-&gt;state &lt; 0) {
+	strcpy(connection-&gt;errorStr, "state not found");
+	connection-&gt;error = 1;
+	free(status);
+	return NULL;
+    }
+
+    return status;
+}
+
+void mpd_freeStatus(mpd_Status * status)
+{
+    if (status-&gt;error)
+	free(status-&gt;error);
+    free(status);
+}
+
+void mpd_sendStatsCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "stats\n");
+}
+
+mpd_Stats *mpd_getStats(mpd_Connection * connection)
+{
+    mpd_Stats *stats;
+
+    /*mpd_executeCommand(connection,"stats\n");
+
+       if(connection-&gt;error) return NULL; */
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    if (!connection-&gt;returnElement)
+	mpd_getNextReturnElement(connection);
+
+    stats = malloc(sizeof(mpd_Stats));
+    stats-&gt;numberOfArtists = 0;
+    stats-&gt;numberOfAlbums = 0;
+    stats-&gt;numberOfSongs = 0;
+    stats-&gt;uptime = 0;
+    stats-&gt;dbUpdateTime = 0;
+    stats-&gt;playTime = 0;
+    stats-&gt;dbPlayTime = 0;
+
+    if (connection-&gt;error) {
+	free(stats);
+	return NULL;
+    }
+    while (connection-&gt;returnElement) {
+	mpd_ReturnElement *re = connection-&gt;returnElement;
+	if (strcmp(re-&gt;name, "artists") == 0) {
+	    stats-&gt;numberOfArtists = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "albums") == 0) {
+	    stats-&gt;numberOfAlbums = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "songs") == 0) {
+	    stats-&gt;numberOfSongs = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "uptime") == 0) {
+	    stats-&gt;uptime = strtol(re-&gt;value, NULL, 10);
+	} else if (strcmp(re-&gt;name, "db_update") == 0) {
+	    stats-&gt;dbUpdateTime = strtol(re-&gt;value, NULL, 10);
+	} else if (strcmp(re-&gt;name, "playtime") == 0) {
+	    stats-&gt;playTime = strtol(re-&gt;value, NULL, 10);
+	} else if (strcmp(re-&gt;name, "db_playtime") == 0) {
+	    stats-&gt;dbPlayTime = strtol(re-&gt;value, NULL, 10);
+	}
+
+	mpd_getNextReturnElement(connection);
+	if (connection-&gt;error) {
+	    free(stats);
+	    return NULL;
+	}
+    }
+
+    if (connection-&gt;error) {
+	free(stats);
+	return NULL;
+    }
+
+    return stats;
+}
+
+void mpd_freeStats(mpd_Stats * stats)
+{
+    free(stats);
+}
+
+mpd_SearchStats *mpd_getSearchStats(mpd_Connection * connection)
+{
+    mpd_SearchStats *stats;
+    mpd_ReturnElement *re;
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    if (!connection-&gt;returnElement)
+	mpd_getNextReturnElement(connection);
+
+    if (connection-&gt;error)
+	return NULL;
+
+    stats = malloc(sizeof(mpd_SearchStats));
+    stats-&gt;numberOfSongs = 0;
+    stats-&gt;playTime = 0;
+
+    while (connection-&gt;returnElement) {
+	re = connection-&gt;returnElement;
+
+	if (strcmp(re-&gt;name, "songs") == 0) {
+	    stats-&gt;numberOfSongs = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "playtime") == 0) {
+	    stats-&gt;playTime = strtol(re-&gt;value, NULL, 10);
+	}
+
+	mpd_getNextReturnElement(connection);
+	if (connection-&gt;error) {
+	    free(stats);
+	    return NULL;
+	}
+    }
+
+    if (connection-&gt;error) {
+	free(stats);
+	return NULL;
+    }
+
+    return stats;
+}
+
+void mpd_freeSearchStats(mpd_SearchStats * stats)
+{
+    free(stats);
+}
+
+static void mpd_initSong(mpd_Song * song)
+{
+    song-&gt;file = NULL;
+    song-&gt;artist = NULL;
+    song-&gt;album = NULL;
+    song-&gt;track = NULL;
+    song-&gt;title = NULL;
+    song-&gt;name = NULL;
+    song-&gt;date = NULL;
+    /* added by Qball */
+    song-&gt;genre = NULL;
+    song-&gt;composer = NULL;
+    song-&gt;performer = NULL;
+    song-&gt;disc = NULL;
+    song-&gt;comment = NULL;
+
+    song-&gt;time = MPD_SONG_NO_TIME;
+    song-&gt;pos = MPD_SONG_NO_NUM;
+    song-&gt;id = MPD_SONG_NO_ID;
+}
+
+static void mpd_finishSong(mpd_Song * song)
+{
+    if (song-&gt;file)
+	free(song-&gt;file);
+    if (song-&gt;artist)
+	free(song-&gt;artist);
+    if (song-&gt;album)
+	free(song-&gt;album);
+    if (song-&gt;title)
+	free(song-&gt;title);
+    if (song-&gt;track)
+	free(song-&gt;track);
+    if (song-&gt;name)
+	free(song-&gt;name);
+    if (song-&gt;date)
+	free(song-&gt;date);
+    if (song-&gt;genre)
+	free(song-&gt;genre);
+    if (song-&gt;composer)
+	free(song-&gt;composer);
+    if (song-&gt;disc)
+	free(song-&gt;disc);
+    if (song-&gt;comment)
+	free(song-&gt;comment);
+}
+
+mpd_Song *mpd_newSong(void)
+{
+    mpd_Song *ret = malloc(sizeof(mpd_Song));
+
+    mpd_initSong(ret);
+
+    return ret;
+}
+
+void mpd_freeSong(mpd_Song * song)
+{
+    mpd_finishSong(song);
+    free(song);
+}
+
+mpd_Song *mpd_songDup(mpd_Song * song)
+{
+    mpd_Song *ret = mpd_newSong();
+
+    if (song-&gt;file)
+	ret-&gt;file = strdup(song-&gt;file);
+    if (song-&gt;artist)
+	ret-&gt;artist = strdup(song-&gt;artist);
+    if (song-&gt;album)
+	ret-&gt;album = strdup(song-&gt;album);
+    if (song-&gt;title)
+	ret-&gt;title = strdup(song-&gt;title);
+    if (song-&gt;track)
+	ret-&gt;track = strdup(song-&gt;track);
+    if (song-&gt;name)
+	ret-&gt;name = strdup(song-&gt;name);
+    if (song-&gt;date)
+	ret-&gt;date = strdup(song-&gt;date);
+    if (song-&gt;genre)
+	ret-&gt;genre = strdup(song-&gt;genre);
+    if (song-&gt;composer)
+	ret-&gt;composer = strdup(song-&gt;composer);
+    if (song-&gt;disc)
+	ret-&gt;disc = strdup(song-&gt;disc);
+    if (song-&gt;comment)
+	ret-&gt;comment = strdup(song-&gt;comment);
+    ret-&gt;time = song-&gt;time;
+    ret-&gt;pos = song-&gt;pos;
+    ret-&gt;id = song-&gt;id;
+
+    return ret;
+}
+
+static void mpd_initDirectory(mpd_Directory * directory)
+{
+    directory-&gt;path = NULL;
+}
+
+static void mpd_finishDirectory(mpd_Directory * directory)
+{
+    if (directory-&gt;path)
+	free(directory-&gt;path);
+}
+
+mpd_Directory *mpd_newDirectory(void)
+{
+    mpd_Directory *directory = malloc(sizeof(mpd_Directory));;
+
+    mpd_initDirectory(directory);
+
+    return directory;
+}
+
+void mpd_freeDirectory(mpd_Directory * directory)
+{
+    mpd_finishDirectory(directory);
+
+    free(directory);
+}
+
+mpd_Directory *mpd_directoryDup(mpd_Directory * directory)
+{
+    mpd_Directory *ret = mpd_newDirectory();
+
+    if (directory-&gt;path)
+	ret-&gt;path = strdup(directory-&gt;path);
+
+    return ret;
+}
+
+static void mpd_initPlaylistFile(mpd_PlaylistFile * playlist)
+{
+    playlist-&gt;path = NULL;
+}
+
+static void mpd_finishPlaylistFile(mpd_PlaylistFile * playlist)
+{
+    if (playlist-&gt;path)
+	free(playlist-&gt;path);
+}
+
+mpd_PlaylistFile *mpd_newPlaylistFile(void)
+{
+    mpd_PlaylistFile *playlist = malloc(sizeof(mpd_PlaylistFile));
+
+    mpd_initPlaylistFile(playlist);
+
+    return playlist;
+}
+
+void mpd_freePlaylistFile(mpd_PlaylistFile * playlist)
+{
+    mpd_finishPlaylistFile(playlist);
+    free(playlist);
+}
+
+mpd_PlaylistFile *mpd_playlistFileDup(mpd_PlaylistFile * playlist)
+{
+    mpd_PlaylistFile *ret = mpd_newPlaylistFile();
+
+    if (playlist-&gt;path)
+	ret-&gt;path = strdup(playlist-&gt;path);
+
+    return ret;
+}
+
+static void mpd_initInfoEntity(mpd_InfoEntity * entity)
+{
+    entity-&gt;info.directory = NULL;
+}
+
+static void mpd_finishInfoEntity(mpd_InfoEntity * entity)
+{
+    if (entity-&gt;info.directory) {
+	if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_DIRECTORY) {
+	    mpd_freeDirectory(entity-&gt;info.directory);
+	} else if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_SONG) {
+	    mpd_freeSong(entity-&gt;info.song);
+	} else if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_PLAYLISTFILE) {
+	    mpd_freePlaylistFile(entity-&gt;info.playlistFile);
+	}
+    }
+}
+
+mpd_InfoEntity *mpd_newInfoEntity(void)
+{
+    mpd_InfoEntity *entity = malloc(sizeof(mpd_InfoEntity));
+
+    mpd_initInfoEntity(entity);
+
+    return entity;
+}
+
+void mpd_freeInfoEntity(mpd_InfoEntity * entity)
+{
+    mpd_finishInfoEntity(entity);
+    free(entity);
+}
+
+static void mpd_sendInfoCommand(mpd_Connection * connection, char *command)
+{
+    mpd_executeCommand(connection, command);
+}
+
+mpd_InfoEntity *mpd_getNextInfoEntity(mpd_Connection * connection)
+{
+    mpd_InfoEntity *entity = NULL;
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    if (!connection-&gt;returnElement)
+	mpd_getNextReturnElement(connection);
+
+    if (connection-&gt;returnElement) {
+	if (strcmp(connection-&gt;returnElement-&gt;name, "file") == 0) {
+	    entity = mpd_newInfoEntity();
+	    entity-&gt;type = MPD_INFO_ENTITY_TYPE_SONG;
+	    entity-&gt;info.song = mpd_newSong();
+	    entity-&gt;info.song-&gt;file = strdup(connection-&gt;returnElement-&gt;value);
+	} else if (strcmp(connection-&gt;returnElement-&gt;name, "directory") == 0) {
+	    entity = mpd_newInfoEntity();
+	    entity-&gt;type = MPD_INFO_ENTITY_TYPE_DIRECTORY;
+	    entity-&gt;info.directory = mpd_newDirectory();
+	    entity-&gt;info.directory-&gt;path = strdup(connection-&gt;returnElement-&gt;value);
+	} else if (strcmp(connection-&gt;returnElement-&gt;name, "playlist") == 0) {
+	    entity = mpd_newInfoEntity();
+	    entity-&gt;type = MPD_INFO_ENTITY_TYPE_PLAYLISTFILE;
+	    entity-&gt;info.playlistFile = mpd_newPlaylistFile();
+	    entity-&gt;info.playlistFile-&gt;path = strdup(connection-&gt;returnElement-&gt;value);
+	} else if (strcmp(connection-&gt;returnElement-&gt;name, "cpos") == 0) {
+	    entity = mpd_newInfoEntity();
+	    entity-&gt;type = MPD_INFO_ENTITY_TYPE_SONG;
+	    entity-&gt;info.song = mpd_newSong();
+	    entity-&gt;info.song-&gt;pos = atoi(connection-&gt;returnElement-&gt;value);
+	} else {
+	    connection-&gt;error = 1;
+	    strcpy(connection-&gt;errorStr, "problem parsing song info");
+	    return NULL;
+	}
+    } else
+	return NULL;
+
+    mpd_getNextReturnElement(connection);
+    while (connection-&gt;returnElement) {
+	mpd_ReturnElement *re = connection-&gt;returnElement;
+
+	if (strcmp(re-&gt;name, "file") == 0)
+	    return entity;
+	else if (strcmp(re-&gt;name, "directory") == 0)
+	    return entity;
+	else if (strcmp(re-&gt;name, "playlist") == 0)
+	    return entity;
+	else if (strcmp(re-&gt;name, "cpos") == 0)
+	    return entity;
+
+	if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_SONG &amp;&amp; strlen(re-&gt;value)) {
+	    if (!entity-&gt;info.song-&gt;artist &amp;&amp; strcmp(re-&gt;name, "Artist") == 0) {
+		entity-&gt;info.song-&gt;artist = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;album &amp;&amp; strcmp(re-&gt;name, "Album") == 0) {
+		entity-&gt;info.song-&gt;album = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;title &amp;&amp; strcmp(re-&gt;name, "Title") == 0) {
+		entity-&gt;info.song-&gt;title = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;track &amp;&amp; strcmp(re-&gt;name, "Track") == 0) {
+		entity-&gt;info.song-&gt;track = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;name &amp;&amp; strcmp(re-&gt;name, "Name") == 0) {
+		entity-&gt;info.song-&gt;name = strdup(re-&gt;value);
+	    } else if (entity-&gt;info.song-&gt;time == MPD_SONG_NO_TIME &amp;&amp; strcmp(re-&gt;name, "Time") == 0) {
+		entity-&gt;info.song-&gt;time = atoi(re-&gt;value);
+	    } else if (entity-&gt;info.song-&gt;pos == MPD_SONG_NO_NUM &amp;&amp; strcmp(re-&gt;name, "Pos") == 0) {
+		entity-&gt;info.song-&gt;pos = atoi(re-&gt;value);
+	    } else if (entity-&gt;info.song-&gt;id == MPD_SONG_NO_ID &amp;&amp; strcmp(re-&gt;name, "Id") == 0) {
+		entity-&gt;info.song-&gt;id = atoi(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;date &amp;&amp; strcmp(re-&gt;name, "Date") == 0) {
+		entity-&gt;info.song-&gt;date = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;genre &amp;&amp; strcmp(re-&gt;name, "Genre") == 0) {
+		entity-&gt;info.song-&gt;genre = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;composer &amp;&amp; strcmp(re-&gt;name, "Composer") == 0) {
+		entity-&gt;info.song-&gt;composer = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;performer &amp;&amp; strcmp(re-&gt;name, "Performer") == 0) {
+		entity-&gt;info.song-&gt;performer = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;disc &amp;&amp; strcmp(re-&gt;name, "Disc") == 0) {
+		entity-&gt;info.song-&gt;disc = strdup(re-&gt;value);
+	    } else if (!entity-&gt;info.song-&gt;comment &amp;&amp; strcmp(re-&gt;name, "Comment") == 0) {
+		entity-&gt;info.song-&gt;comment = strdup(re-&gt;value);
+	    }
+	} else if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_DIRECTORY) {
+	} else if (entity-&gt;type == MPD_INFO_ENTITY_TYPE_PLAYLISTFILE) {
+	}
+
+	mpd_getNextReturnElement(connection);
+    }
+
+    return entity;
+}
+
+static char *mpd_getNextReturnElementNamed(mpd_Connection * connection, const char *name)
+{
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    mpd_getNextReturnElement(connection);
+    while (connection-&gt;returnElement) {
+	mpd_ReturnElement *re = connection-&gt;returnElement;
+
+	if (strcmp(re-&gt;name, name) == 0)
+	    return strdup(re-&gt;value);
+	mpd_getNextReturnElement(connection);
+    }
+
+    return NULL;
+}
+
+char *mpd_getNextTag(mpd_Connection * connection, int type)
+{
+    if (type &lt; 0 || type &gt;= MPD_TAG_NUM_OF_ITEM_TYPES || type == MPD_TAG_ITEM_ANY)
+	return NULL;
+    if (type == MPD_TAG_ITEM_FILENAME)
+	return mpd_getNextReturnElementNamed(connection, "file");
+    return mpd_getNextReturnElementNamed(connection, mpdTagItemKeys[type]);
+}
+
+char *mpd_getNextArtist(mpd_Connection * connection)
+{
+    return mpd_getNextReturnElementNamed(connection, "Artist");
+}
+
+char *mpd_getNextAlbum(mpd_Connection * connection)
+{
+    return mpd_getNextReturnElementNamed(connection, "Album");
+}
+
+void mpd_sendPlaylistInfoCommand(mpd_Connection * connection, int songPos)
+{
+    int len = strlen("playlistinfo") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistinfo \"%i\"\n", songPos);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendPlaylistIdCommand(mpd_Connection * connection, int id)
+{
+    int len = strlen("playlistid") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistid \"%i\"\n", id);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendPlChangesCommand(mpd_Connection * connection, long long playlist)
+{
+    int len = strlen("plchanges") + 2 + LONGLONGLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "plchanges \"%lld\"\n", playlist);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendPlChangesPosIdCommand(mpd_Connection * connection, long long playlist)
+{
+    int len = strlen("plchangesposid") + 2 + LONGLONGLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "plchangesposid \"%lld\"\n", playlist);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendListallCommand(mpd_Connection * connection, const char *dir)
+{
+    char *sDir = mpd_sanitizeArg(dir);
+    int len = strlen("listall") + 2 + strlen(sDir) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "listall \"%s\"\n", sDir);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+    free(sDir);
+}
+
+void mpd_sendListallInfoCommand(mpd_Connection * connection, const char *dir)
+{
+    char *sDir = mpd_sanitizeArg(dir);
+    int len = strlen("listallinfo") + 2 + strlen(sDir) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "listallinfo \"%s\"\n", sDir);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+    free(sDir);
+}
+
+void mpd_sendLsInfoCommand(mpd_Connection * connection, const char *dir)
+{
+    char *sDir = mpd_sanitizeArg(dir);
+    int len = strlen("lsinfo") + 2 + strlen(sDir) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "lsinfo \"%s\"\n", sDir);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+    free(sDir);
+}
+
+void mpd_sendCurrentSongCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "currentsong\n");
+}
+
+void mpd_sendSearchCommand(mpd_Connection * connection, int table, const char *str)
+{
+    mpd_startSearch(connection, 0);
+    mpd_addConstraintSearch(connection, table, str);
+    mpd_commitSearch(connection);
+}
+
+void mpd_sendFindCommand(mpd_Connection * connection, int table, const char *str)
+{
+    mpd_startSearch(connection, 1);
+    mpd_addConstraintSearch(connection, table, str);
+    mpd_commitSearch(connection);
+}
+
+void mpd_sendListCommand(mpd_Connection * connection, int table, const char *arg1)
+{
+    char st[10];
+    int len;
+    char *string;
+    if (table == MPD_TABLE_ARTIST)
+	strcpy(st, "artist");
+    else if (table == MPD_TABLE_ALBUM)
+	strcpy(st, "album");
+    else {
+	connection-&gt;error = 1;
+	strcpy(connection-&gt;errorStr, "unknown table for list");
+	return;
+    }
+    if (arg1) {
+	char *sanitArg1 = mpd_sanitizeArg(arg1);
+	len = strlen("list") + 1 + strlen(sanitArg1) + 2 + strlen(st) + 3;
+	string = malloc(len);
+	snprintf(string, len, "list %s \"%s\"\n", st, sanitArg1);
+	free(sanitArg1);
+    } else {
+	len = strlen("list") + 1 + strlen(st) + 2;
+	string = malloc(len);
+	snprintf(string, len, "list %s\n", st);
+    }
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendAddCommand(mpd_Connection * connection, const char *file)
+{
+    char *sFile = mpd_sanitizeArg(file);
+    int len = strlen("add") + 2 + strlen(sFile) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "add \"%s\"\n", sFile);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sFile);
+}
+
+int mpd_sendAddIdCommand(mpd_Connection * connection, const char *file)
+{
+    int retval = -1;
+    char *sFile = mpd_sanitizeArg(file);
+    int len = strlen("addid") + 2 + strlen(sFile) + 3;
+    char *string = malloc(len);
+
+    snprintf(string, len, "addid \"%s\"\n", sFile);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+    free(sFile);
+
+    string = mpd_getNextReturnElementNamed(connection, "Id");
+    if (string) {
+	retval = atoi(string);
+	free(string);
+    }
+
+    return retval;
+}
+
+void mpd_sendDeleteCommand(mpd_Connection * connection, int songPos)
+{
+    int len = strlen("delete") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "delete \"%i\"\n", songPos);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendDeleteIdCommand(mpd_Connection * connection, int id)
+{
+    int len = strlen("deleteid") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "deleteid \"%i\"\n", id);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSaveCommand(mpd_Connection * connection, const char *name)
+{
+    char *sName = mpd_sanitizeArg(name);
+    int len = strlen("save") + 2 + strlen(sName) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "save \"%s\"\n", sName);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sName);
+}
+
+void mpd_sendLoadCommand(mpd_Connection * connection, const char *name)
+{
+    char *sName = mpd_sanitizeArg(name);
+    int len = strlen("load") + 2 + strlen(sName) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "load \"%s\"\n", sName);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sName);
+}
+
+void mpd_sendRmCommand(mpd_Connection * connection, const char *name)
+{
+    char *sName = mpd_sanitizeArg(name);
+    int len = strlen("rm") + 2 + strlen(sName) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "rm \"%s\"\n", sName);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sName);
+}
+
+void mpd_sendRenameCommand(mpd_Connection * connection, const char *from, const char *to)
+{
+    char *sFrom = mpd_sanitizeArg(from);
+    char *sTo = mpd_sanitizeArg(to);
+    int len = strlen("rename") + 2 + strlen(sFrom) + 3 + strlen(sTo) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "rename \"%s\" \"%s\"\n", sFrom, sTo);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sFrom);
+    free(sTo);
+}
+
+void mpd_sendShuffleCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "shuffle\n");
+}
+
+void mpd_sendClearCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "clear\n");
+}
+
+void mpd_sendPlayCommand(mpd_Connection * connection, int songPos)
+{
+    int len = strlen("play") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "play \"%i\"\n", songPos);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendPlayIdCommand(mpd_Connection * connection, int id)
+{
+    int len = strlen("playid") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playid \"%i\"\n", id);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendStopCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "stop\n");
+}
+
+void mpd_sendPauseCommand(mpd_Connection * connection, int pauseMode)
+{
+    int len = strlen("pause") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "pause \"%i\"\n", pauseMode);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendNextCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "next\n");
+}
+
+void mpd_sendMoveCommand(mpd_Connection * connection, int from, int to)
+{
+    int len = strlen("move") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "move \"%i\" \"%i\"\n", from, to);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendMoveIdCommand(mpd_Connection * connection, int id, int to)
+{
+    int len = strlen("moveid") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "moveid \"%i\" \"%i\"\n", id, to);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSwapCommand(mpd_Connection * connection, int song1, int song2)
+{
+    int len = strlen("swap") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "swap \"%i\" \"%i\"\n", song1, song2);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSwapIdCommand(mpd_Connection * connection, int id1, int id2)
+{
+    int len = strlen("swapid") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "swapid \"%i\" \"%i\"\n", id1, id2);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSeekCommand(mpd_Connection * connection, int song, int time)
+{
+    int len = strlen("seek") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "seek \"%i\" \"%i\"\n", song, time);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSeekIdCommand(mpd_Connection * connection, int id, int time)
+{
+    int len = strlen("seekid") + 2 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "seekid \"%i\" \"%i\"\n", id, time);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendUpdateCommand(mpd_Connection * connection, char *path)
+{
+    char *sPath = mpd_sanitizeArg(path);
+    int len = strlen("update") + 2 + strlen(sPath) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "update \"%s\"\n", sPath);
+    mpd_sendInfoCommand(connection, string);
+    free(string);
+    free(sPath);
+}
+
+int mpd_getUpdateId(mpd_Connection * connection)
+{
+    char *jobid;
+    int ret = 0;
+
+    jobid = mpd_getNextReturnElementNamed(connection, "updating_db");
+    if (jobid) {
+	ret = atoi(jobid);
+	free(jobid);
+    }
+
+    return ret;
+}
+
+void mpd_sendPrevCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "previous\n");
+}
+
+void mpd_sendRepeatCommand(mpd_Connection * connection, int repeatMode)
+{
+    int len = strlen("repeat") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "repeat \"%i\"\n", repeatMode);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendRandomCommand(mpd_Connection * connection, int randomMode)
+{
+    int len = strlen("random") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "random \"%i\"\n", randomMode);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendSetvolCommand(mpd_Connection * connection, int volumeChange)
+{
+    int len = strlen("setvol") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "setvol \"%i\"\n", volumeChange);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendVolumeCommand(mpd_Connection * connection, int volumeChange)
+{
+    int len = strlen("volume") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "volume \"%i\"\n", volumeChange);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendCrossfadeCommand(mpd_Connection * connection, int seconds)
+{
+    int len = strlen("crossfade") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "crossfade \"%i\"\n", seconds);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendPasswordCommand(mpd_Connection * connection, const char *pass)
+{
+    char *sPass = mpd_sanitizeArg(pass);
+    int len = strlen("password") + 2 + strlen(sPass) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "password \"%s\"\n", sPass);
+    mpd_executeCommand(connection, string);
+    free(string);
+    free(sPass);
+}
+
+void mpd_sendCommandListBegin(mpd_Connection * connection)
+{
+    if (connection-&gt;commandList) {
+	strcpy(connection-&gt;errorStr, "already in command list mode");
+	connection-&gt;error = 1;
+	return;
+    }
+    connection-&gt;commandList = COMMAND_LIST;
+    mpd_executeCommand(connection, "command_list_begin\n");
+}
+
+void mpd_sendCommandListOkBegin(mpd_Connection * connection)
+{
+    if (connection-&gt;commandList) {
+	strcpy(connection-&gt;errorStr, "already in command list mode");
+	connection-&gt;error = 1;
+	return;
+    }
+    connection-&gt;commandList = COMMAND_LIST_OK;
+    mpd_executeCommand(connection, "command_list_ok_begin\n");
+    connection-&gt;listOks = 0;
+}
+
+void mpd_sendCommandListEnd(mpd_Connection * connection)
+{
+    if (!connection-&gt;commandList) {
+	strcpy(connection-&gt;errorStr, "not in command list mode");
+	connection-&gt;error = 1;
+	return;
+    }
+    connection-&gt;commandList = 0;
+    mpd_executeCommand(connection, "command_list_end\n");
+}
+
+void mpd_sendOutputsCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "outputs\n");
+}
+
+mpd_OutputEntity *mpd_getNextOutput(mpd_Connection * connection)
+{
+    mpd_OutputEntity *output = NULL;
+
+    if (connection-&gt;doneProcessing || (connection-&gt;listOks &amp;&amp; connection-&gt;doneListOk)) {
+	return NULL;
+    }
+
+    if (connection-&gt;error)
+	return NULL;
+
+    output = malloc(sizeof(mpd_OutputEntity));
+    output-&gt;id = -10;
+    output-&gt;name = NULL;
+    output-&gt;enabled = 0;
+
+    if (!connection-&gt;returnElement)
+	mpd_getNextReturnElement(connection);
+
+    while (connection-&gt;returnElement) {
+	mpd_ReturnElement *re = connection-&gt;returnElement;
+	if (strcmp(re-&gt;name, "outputid") == 0) {
+	    if (output != NULL &amp;&amp; output-&gt;id &gt;= 0)
+		return output;
+	    output-&gt;id = atoi(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "outputname") == 0) {
+	    output-&gt;name = strdup(re-&gt;value);
+	} else if (strcmp(re-&gt;name, "outputenabled") == 0) {
+	    output-&gt;enabled = atoi(re-&gt;value);
+	}
+
+	mpd_getNextReturnElement(connection);
+	if (connection-&gt;error) {
+	    free(output);
+	    return NULL;
+	}
+
+    }
+
+    return output;
+}
+
+void mpd_sendEnableOutputCommand(mpd_Connection * connection, int outputId)
+{
+    int len = strlen("enableoutput") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "enableoutput \"%i\"\n", outputId);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_sendDisableOutputCommand(mpd_Connection * connection, int outputId)
+{
+    int len = strlen("disableoutput") + 2 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "disableoutput \"%i\"\n", outputId);
+    mpd_executeCommand(connection, string);
+    free(string);
+}
+
+void mpd_freeOutputElement(mpd_OutputEntity * output)
+{
+    free(output-&gt;name);
+    free(output);
+}
+
+/**
+ * mpd_sendNotCommandsCommand
+ * odd naming, but it gets the not allowed commands
+ */
+
+void mpd_sendNotCommandsCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "notcommands\n");
+}
+
+/**
+ * mpd_sendCommandsCommand
+ * odd naming, but it gets the allowed commands
+ */
+void mpd_sendCommandsCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "commands\n");
+}
+
+/**
+ * Get the next returned command
+ */
+char *mpd_getNextCommand(mpd_Connection * connection)
+{
+    return mpd_getNextReturnElementNamed(connection, "command");
+}
+
+void mpd_sendUrlHandlersCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "urlhandlers\n");
+}
+
+char *mpd_getNextHandler(mpd_Connection * connection)
+{
+    return mpd_getNextReturnElementNamed(connection, "handler");
+}
+
+void mpd_sendTagTypesCommand(mpd_Connection * connection)
+{
+    mpd_executeCommand(connection, "tagtypes\n");
+}
+
+char *mpd_getNextTagType(mpd_Connection * connection)
+{
+    return mpd_getNextReturnElementNamed(connection, "tagtype");
+}
+
+void mpd_startSearch(mpd_Connection * connection, int exact)
+{
+    if (connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "search already in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    if (exact)
+	connection-&gt;request = strdup("find");
+    else
+	connection-&gt;request = strdup("search");
+}
+
+void mpd_startStatsSearch(mpd_Connection * connection)
+{
+    if (connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "search already in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    connection-&gt;request = strdup("count");
+}
+
+void mpd_startPlaylistSearch(mpd_Connection * connection, int exact)
+{
+    if (connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "search already in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    if (exact)
+	connection-&gt;request = strdup("playlistfind");
+    else
+	connection-&gt;request = strdup("playlistsearch");
+}
+
+void mpd_startFieldSearch(mpd_Connection * connection, int type)
+{
+    char *strtype;
+    int len;
+
+    if (connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "search already in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    if (type &lt; 0 || type &gt;= MPD_TAG_NUM_OF_ITEM_TYPES) {
+	strcpy(connection-&gt;errorStr, "invalid type specified");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    strtype = mpdTagItemKeys[type];
+
+    len = 5 + strlen(strtype) + 1;
+    connection-&gt;request = malloc(len);
+
+    snprintf(connection-&gt;request, len, "list %c%s", tolower(strtype[0]), strtype + 1);
+}
+
+void mpd_addConstraintSearch(mpd_Connection * connection, int type, const char *name)
+{
+    char *strtype;
+    char *arg;
+    int len;
+    char *string;
+
+    if (!connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "no search in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    if (type &lt; 0 || type &gt;= MPD_TAG_NUM_OF_ITEM_TYPES) {
+	strcpy(connection-&gt;errorStr, "invalid type specified");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    if (name == NULL) {
+	strcpy(connection-&gt;errorStr, "no name specified");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    string = strdup(connection-&gt;request);
+    strtype = mpdTagItemKeys[type];
+    arg = mpd_sanitizeArg(name);
+
+    len = strlen(string) + 1 + strlen(strtype) + 2 + strlen(arg) + 2;
+    connection-&gt;request = realloc(connection-&gt;request, len);
+    snprintf(connection-&gt;request, len, "%s %c%s \"%s\"", string, tolower(strtype[0]), strtype + 1, arg);
+
+    free(string);
+    free(arg);
+}
+
+void mpd_commitSearch(mpd_Connection * connection)
+{
+    int len;
+
+    if (!connection-&gt;request) {
+	strcpy(connection-&gt;errorStr, "no search in progress");
+	connection-&gt;error = 1;
+	return;
+    }
+
+    len = strlen(connection-&gt;request) + 2;
+    connection-&gt;request = realloc(connection-&gt;request, len);
+    connection-&gt;request[len - 2] = '\n';
+    connection-&gt;request[len - 1] = '\0';
+    mpd_sendInfoCommand(connection, connection-&gt;request);
+
+    free(connection-&gt;request);
+    connection-&gt;request = NULL;
+}
+
+/**
+ * @param connection a MpdConnection
+ * @param path	the path to the playlist.
+ *
+ * List the content, with full metadata, of a stored playlist.
+ *
+ */
+void mpd_sendListPlaylistInfoCommand(mpd_Connection * connection, char *path)
+{
+    char *arg = mpd_sanitizeArg(path);
+    int len = strlen("listplaylistinfo") + 2 + strlen(arg) + 3;
+    char *query = malloc(len);
+    snprintf(query, len, "listplaylistinfo \"%s\"\n", arg);
+    mpd_sendInfoCommand(connection, query);
+    free(arg);
+    free(query);
+}
+
+/**
+ * @param connection a MpdConnection
+ * @param path	the path to the playlist.
+ *
+ * List the content of a stored playlist.
+ *
+ */
+void mpd_sendListPlaylistCommand(mpd_Connection * connection, char *path)
+{
+    char *arg = mpd_sanitizeArg(path);
+    int len = strlen("listplaylist") + 2 + strlen(arg) + 3;
+    char *query = malloc(len);
+    snprintf(query, len, "listplaylist \"%s\"\n", arg);
+    mpd_sendInfoCommand(connection, query);
+    free(arg);
+    free(query);
+}
+
+void mpd_sendPlaylistClearCommand(mpd_Connection * connection, char *path)
+{
+    char *sPath = mpd_sanitizeArg(path);
+    int len = strlen("playlistclear") + 2 + strlen(sPath) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistclear \"%s\"\n", sPath);
+    mpd_executeCommand(connection, string);
+    free(sPath);
+    free(string);
+}
+
+void mpd_sendPlaylistAddCommand(mpd_Connection * connection, char *playlist, char *path)
+{
+    char *sPlaylist = mpd_sanitizeArg(playlist);
+    char *sPath = mpd_sanitizeArg(path);
+    int len = strlen("playlistadd") + 2 + strlen(sPlaylist) + 3 + strlen(sPath) + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistadd \"%s\" \"%s\"\n", sPlaylist, sPath);
+    mpd_executeCommand(connection, string);
+    free(sPlaylist);
+    free(sPath);
+    free(string);
+}
+
+void mpd_sendPlaylistMoveCommand(mpd_Connection * connection, char *playlist, int from, int to)
+{
+    char *sPlaylist = mpd_sanitizeArg(playlist);
+    int len = strlen("playlistmove") + 2 + strlen(sPlaylist) + 3 + INTLEN + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistmove \"%s\" \"%i\" \"%i\"\n", sPlaylist, from, to);
+    mpd_executeCommand(connection, string);
+    free(sPlaylist);
+    free(string);
+}
+
+void mpd_sendPlaylistDeleteCommand(mpd_Connection * connection, char *playlist, int pos)
+{
+    char *sPlaylist = mpd_sanitizeArg(playlist);
+    int len = strlen("playlistdelete") + 2 + strlen(sPlaylist) + 3 + INTLEN + 3;
+    char *string = malloc(len);
+    snprintf(string, len, "playlistdelete \"%s\" \"%i\"\n", sPlaylist, pos);
+    mpd_executeCommand(connection, string);
+    free(sPlaylist);
+    free(string);
+}
--- /dev/null
+++ b/libmpdclient.h
@@ -0,0 +1,661 @@
+/* libmpdclient
+   (c)2003-2006 by Warren Dukes (warren.dukes@gmail.com)
+   This project's homepage is: http://www.musicpd.org
+
+   Redistribution and use in source and binary forms, with or without
+   modification, are permitted provided that the following conditions
+   are met:
+
+   - Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+   - Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+   - Neither the name of the Music Player Daemon nor the names of its
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+
+   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+#ifndef LIBMPDCLIENT_H
+#define LIBMPDCLIENT_H
+
+#ifdef WIN32
+#  define __W32API_USE_DLLIMPORT__ 1
+#endif
+
+#include &lt;sys/time.h&gt;
+#include &lt;stdarg.h&gt;
+#define MPD_BUFFER_MAX_LENGTH	50000
+#define MPD_ERRORSTR_MAX_LENGTH	1000
+#define MPD_WELCOME_MESSAGE	"OK MPD "
+
+#define MPD_ERROR_TIMEOUT	10	/* timeout trying to talk to mpd */
+#define MPD_ERROR_SYSTEM	11	/* system error */
+#define MPD_ERROR_UNKHOST	12	/* unknown host */
+#define MPD_ERROR_CONNPORT	13	/* problems connecting to port on host */
+#define MPD_ERROR_NOTMPD	14	/* mpd not running on port at host */
+#define MPD_ERROR_NORESPONSE	15	/* no response on attempting to connect */
+#define MPD_ERROR_SENDING	16	/* error sending command */
+#define MPD_ERROR_CONNCLOSED	17	/* connection closed by mpd */
+#define MPD_ERROR_ACK		18	/* ACK returned! */
+#define MPD_ERROR_BUFFEROVERRUN	19	/* Buffer was overrun! */
+
+#define MPD_ACK_ERROR_UNK	-1
+#define MPD_ERROR_AT_UNK	-1
+
+#define MPD_ACK_ERROR_NOT_LIST			1
+#define MPD_ACK_ERROR_ARG			2
+#define MPD_ACK_ERROR_PASSWORD			3
+#define MPD_ACK_ERROR_PERMISSION		4
+#define MPD_ACK_ERROR_UNKNOWN_CMD		5
+
+#define MPD_ACK_ERROR_NO_EXIST			50
+#define MPD_ACK_ERROR_PLAYLIST_MAX		51
+#define MPD_ACK_ERROR_SYSTEM			52
+#define MPD_ACK_ERROR_PLAYLIST_LOAD		53
+#define MPD_ACK_ERROR_UPDATE_ALREADY		54
+#define MPD_ACK_ERROR_PLAYER_SYNC		55
+#define MPD_ACK_ERROR_EXIST			56
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+    typedef enum mpd_TagItems {
+	MPD_TAG_ITEM_ARTIST,
+	MPD_TAG_ITEM_ALBUM,
+	MPD_TAG_ITEM_TITLE,
+	MPD_TAG_ITEM_TRACK,
+	MPD_TAG_ITEM_NAME,
+	MPD_TAG_ITEM_GENRE,
+	MPD_TAG_ITEM_DATE,
+	MPD_TAG_ITEM_COMPOSER,
+	MPD_TAG_ITEM_PERFORMER,
+	MPD_TAG_ITEM_COMMENT,
+	MPD_TAG_ITEM_DISC,
+	MPD_TAG_ITEM_FILENAME,
+	MPD_TAG_ITEM_ANY,
+	MPD_TAG_NUM_OF_ITEM_TYPES
+    } mpd_TagItems;
+
+    extern char *mpdTagItemKeys[MPD_TAG_NUM_OF_ITEM_TYPES];
+
+/* internal stuff don't touch this struct */
+    typedef struct _mpd_ReturnElement {
+	char *name;
+	char *value;
+    } mpd_ReturnElement;
+
+/* mpd_Connection
+ * holds info about connection to mpd
+ * use error, and errorStr to detect errors
+ */
+    typedef struct _mpd_Connection {
+	/* use this to check the version of mpd */
+	int version[3];
+	/* IMPORTANT, you want to get the error messages from here */
+	char errorStr[MPD_ERRORSTR_MAX_LENGTH + 1];
+	int errorCode;
+	int errorAt;
+	/* this will be set to MPD_ERROR_* if there is an error, 0 if not */
+	int error;
+	/* DON'T TOUCH any of the rest of this stuff */
+	int sock;
+	char buffer[MPD_BUFFER_MAX_LENGTH + 1];
+	int buflen;
+	int bufstart;
+	int doneProcessing;
+	int listOks;
+	int doneListOk;
+	int commandList;
+	mpd_ReturnElement *returnElement;
+	struct timeval timeout;
+	char *request;
+    } mpd_Connection;
+
+/* mpd_newConnection
+ * use this to open a new connection
+ * you should use mpd_closeConnection, when your done with the connection,
+ * even if an error has occurred
+ * _timeout_ is the connection timeout period in seconds
+ */
+    mpd_Connection *mpd_newConnection(const char *host, int port, float timeout);
+
+    void mpd_setConnectionTimeout(mpd_Connection * connection, float timeout);
+
+/* mpd_closeConnection
+ * use this to close a connection and free'ing subsequent memory
+ */
+    void mpd_closeConnection(mpd_Connection * connection);
+
+/* mpd_clearError
+ * clears error
+ */
+    void mpd_clearError(mpd_Connection * connection);
+
+/* STATUS STUFF */
+
+/* use these with status.state to determine what state the player is in */
+#define MPD_STATUS_STATE_UNKNOWN	0
+#define MPD_STATUS_STATE_STOP		1
+#define MPD_STATUS_STATE_PLAY		2
+#define MPD_STATUS_STATE_PAUSE		3
+
+/* us this with status.volume to determine if mpd has volume support */
+#define MPD_STATUS_NO_VOLUME		-1
+
+/* mpd_Status
+ * holds info return from status command
+ */
+    typedef struct mpd_Status {
+	/* 0-100, or MPD_STATUS_NO_VOLUME when there is no volume support */
+	int volume;
+	/* 1 if repeat is on, 0 otherwise */
+	int repeat;
+	/* 1 if random is on, 0 otherwise */
+	int random;
+	/* playlist length */
+	int playlistLength;
+	/* playlist, use this to determine when the playlist has changed */
+	long long playlist;
+	/* use with MPD_STATUS_STATE_* to determine state of player */
+	int state;
+	/* crossfade setting in seconds */
+	int crossfade;
+	/* if a song is currently selected (always the case when state is
+	 * PLAY or PAUSE), this is the position of the currently
+	 * playing song in the playlist, beginning with 0
+	 */
+	int song;
+	/* Song ID of the currently selected song */
+	int songid;
+	/* time in seconds that have elapsed in the currently playing/paused
+	 * song
+	 */
+	int elapsedTime;
+	/* length in seconds of the currently playing/paused song */
+	int totalTime;
+	/* current bit rate in kbs */
+	int bitRate;
+	/* audio sample rate */
+	unsigned int sampleRate;
+	/* audio bits */
+	int bits;
+	/* audio channels */
+	int channels;
+	/* 1 if mpd is updating, 0 otherwise */
+	int updatingDb;
+	/* error */
+	char *error;
+    } mpd_Status;
+
+    void mpd_sendStatusCommand(mpd_Connection * connection);
+
+/* mpd_getStatus
+ * returns status info, be sure to free it with mpd_freeStatus()
+ * call this after mpd_sendStatusCommand()
+ */
+    mpd_Status *mpd_getStatus(mpd_Connection * connection);
+
+/* mpd_freeStatus
+ * free's status info malloc'd and returned by mpd_getStatus
+ */
+    void mpd_freeStatus(mpd_Status * status);
+
+    typedef struct _mpd_Stats {
+	int numberOfArtists;
+	int numberOfAlbums;
+	int numberOfSongs;
+	unsigned long uptime;
+	unsigned long dbUpdateTime;
+	unsigned long playTime;
+	unsigned long dbPlayTime;
+    } mpd_Stats;
+
+    typedef struct _mpd_SearchStats {
+	int numberOfSongs;
+	unsigned long playTime;
+    } mpd_SearchStats;
+
+    void mpd_sendStatsCommand(mpd_Connection * connection);
+
+    mpd_Stats *mpd_getStats(mpd_Connection * connection);
+
+    void mpd_freeStats(mpd_Stats * stats);
+
+    mpd_SearchStats *mpd_getSearchStats(mpd_Connection * connection);
+
+    void mpd_freeSearchStats(mpd_SearchStats * stats);
+
+/* SONG STUFF */
+
+#define MPD_SONG_NO_TIME	-1
+#define MPD_SONG_NO_NUM		-1
+#define MPD_SONG_NO_ID		-1
+
+/* mpd_Song
+ * for storing song info returned by mpd
+ */
+    typedef struct _mpd_Song {
+	/* filename of song */
+	char *file;
+	/* artist, maybe NULL if there is no tag */
+	char *artist;
+	/* title, maybe NULL if there is no tag */
+	char *title;
+	/* album, maybe NULL if there is no tag */
+	char *album;
+	/* track, maybe NULL if there is no tag */
+	char *track;
+	/* name, maybe NULL if there is no tag; it's the name of the current
+	 * song, f.e. the icyName of the stream */
+	char *name;
+	/* date */
+	char *date;
+
+	/* added by qball */
+	/* Genre */
+	char *genre;
+	/* Composer */
+	char *composer;
+	/* Performer */
+	char *performer;
+	/* Disc */
+	char *disc;
+	/* Comment */
+	char *comment;
+
+	/* length of song in seconds, check that it is not MPD_SONG_NO_TIME  */
+	int time;
+	/* if plchanges/playlistinfo/playlistid used, is the position of the
+	 * song in the playlist */
+	int pos;
+	/* song id for a song in the playlist */
+	int id;
+    } mpd_Song;
+
+/* mpd_newSong
+ * use to allocate memory for a new mpd_Song
+ * file, artist, etc all initialized to NULL
+ * if your going to assign values to file, artist, etc
+ * be sure to malloc or strdup the memory
+ * use mpd_freeSong to free the memory for the mpd_Song, it will also
+ * free memory for file, artist, etc, so don't do it yourself
+ */
+    mpd_Song *mpd_newSong(void);
+
+/* mpd_freeSong
+ * use to free memory allocated by mpd_newSong
+ * also it will free memory pointed to by file, artist, etc, so be careful
+ */
+    void mpd_freeSong(mpd_Song * song);
+
+/* mpd_songDup
+ * works like strDup, but for a mpd_Song
+ */
+    mpd_Song *mpd_songDup(mpd_Song * song);
+
+/* DIRECTORY STUFF */
+
+/* mpd_Directory
+ * used to store info fro directory (right now that just the path)
+ */
+    typedef struct _mpd_Directory {
+	char *path;
+    } mpd_Directory;
+
+/* mpd_newDirectory
+ * allocates memory for a new directory
+ * use mpd_freeDirectory to free this memory
+ */
+    mpd_Directory *mpd_newDirectory(void);
+
+/* mpd_freeDirectory
+ * used to free memory allocated with mpd_newDirectory, and it frees
+ * path of mpd_Directory, so be careful
+ */
+    void mpd_freeDirectory(mpd_Directory * directory);
+
+/* mpd_directoryDup
+ * works like strdup, but for mpd_Directory
+ */
+    mpd_Directory *mpd_directoryDup(mpd_Directory * directory);
+
+/* PLAYLISTFILE STUFF */
+
+/* mpd_PlaylistFile
+ * stores info about playlist file returned by lsinfo
+ */
+    typedef struct _mpd_PlaylistFile {
+	char *path;
+    } mpd_PlaylistFile;
+
+/* mpd_newPlaylistFile
+ * allocates memory for new mpd_PlaylistFile, path is set to NULL
+ * free this memory with mpd_freePlaylistFile
+ */
+    mpd_PlaylistFile *mpd_newPlaylistFile(void);
+
+/* mpd_freePlaylist
+ * free memory allocated for freePlaylistFile, will also free
+ * path, so be careful
+ */
+    void mpd_freePlaylistFile(mpd_PlaylistFile * playlist);
+
+/* mpd_playlistFileDup
+ * works like strdup, but for mpd_PlaylistFile
+ */
+    mpd_PlaylistFile *mpd_playlistFileDup(mpd_PlaylistFile * playlist);
+
+/* INFO ENTITY STUFF */
+
+/* the type of entity returned from one of the commands that generates info
+ * use in conjunction with mpd_InfoEntity.type
+ */
+#define MPD_INFO_ENTITY_TYPE_DIRECTORY		0
+#define MPD_INFO_ENTITY_TYPE_SONG		1
+#define MPD_INFO_ENTITY_TYPE_PLAYLISTFILE	2
+
+/* mpd_InfoEntity
+ * stores info on stuff returned info commands
+ */
+    typedef struct mpd_InfoEntity {
+	/* the type of entity, use with MPD_INFO_ENTITY_TYPE_* to determine
+	 * what this entity is (song, directory, etc...)
+	 */
+	int type;
+	/* the actual data you want, mpd_Song, mpd_Directory, etc */
+	union {
+	    mpd_Directory *directory;
+	    mpd_Song *song;
+	    mpd_PlaylistFile *playlistFile;
+	} info;
+    } mpd_InfoEntity;
+
+    mpd_InfoEntity *mpd_newInfoEntity(void);
+
+    void mpd_freeInfoEntity(mpd_InfoEntity * entity);
+
+/* INFO COMMANDS AND STUFF */
+
+/* use this function to loop over after calling Info/Listall functions */
+    mpd_InfoEntity *mpd_getNextInfoEntity(mpd_Connection * connection);
+
+/* fetches the currently seeletect song (the song referenced by status-&gt;song
+ * and status-&gt;songid*/
+    void mpd_sendCurrentSongCommand(mpd_Connection * connection);
+
+/* songNum of -1, means to display the whole list */
+    void mpd_sendPlaylistInfoCommand(mpd_Connection * connection, int songNum);
+
+/* songId of -1, means to display the whole list */
+    void mpd_sendPlaylistIdCommand(mpd_Connection * connection, int songId);
+
+/* use this to get the changes in the playlist since version _playlist_ */
+    void mpd_sendPlChangesCommand(mpd_Connection * connection, long long playlist);
+
+/**
+ * @param connection: A valid and connected mpd_Connection.
+ * @param playlist: The playlist version you want the diff with.
+ * A more bandwidth efficient version of the mpd_sendPlChangesCommand.
+ * It only returns the pos+id of the changes song.
+ */
+    void mpd_sendPlChangesPosIdCommand(mpd_Connection * connection, long long playlist);
+
+/* recursivel fetches all songs/dir/playlists in "dir* (no metadata is
+ * returned) */
+    void mpd_sendListallCommand(mpd_Connection * connection, const char *dir);
+
+/* same as sendListallCommand, but also metadata is returned */
+    void mpd_sendListallInfoCommand(mpd_Connection * connection, const char *dir);
+
+/* non-recursive version of ListallInfo */
+    void mpd_sendLsInfoCommand(mpd_Connection * connection, const char *dir);
+
+#define MPD_TABLE_ARTIST	MPD_TAG_ITEM_ARTIST
+#define MPD_TABLE_ALBUM		MPD_TAG_ITEM_ALBUM
+#define MPD_TABLE_TITLE		MPD_TAG_ITEM_TITLE
+#define MPD_TABLE_FILENAME	MPD_TAG_ITEM_FILENAME
+
+    void mpd_sendSearchCommand(mpd_Connection * connection, int table, const char *str);
+
+    void mpd_sendFindCommand(mpd_Connection * connection, int table, const char *str);
+
+/* LIST TAG COMMANDS */
+
+/* use this function fetch next artist entry, be sure to free the returned
+ * string.  NULL means there are no more.  Best used with sendListArtists
+ */
+    char *mpd_getNextArtist(mpd_Connection * connection);
+
+    char *mpd_getNextAlbum(mpd_Connection * connection);
+
+    char *mpd_getNextTag(mpd_Connection * connection, int type);
+
+/* list artist or albums by artist, arg1 should be set to the artist if
+ * listing albums by a artist, otherwise NULL for listing all artists or albums
+ */
+    void mpd_sendListCommand(mpd_Connection * connection, int table, const char *arg1);
+
+/* SIMPLE COMMANDS */
+
+    void mpd_sendAddCommand(mpd_Connection * connection, const char *file);
+
+    int mpd_sendAddIdCommand(mpd_Connection * connection, const char *file);
+
+    void mpd_sendDeleteCommand(mpd_Connection * connection, int songNum);
+
+    void mpd_sendDeleteIdCommand(mpd_Connection * connection, int songNum);
+
+    void mpd_sendSaveCommand(mpd_Connection * connection, const char *name);
+
+    void mpd_sendLoadCommand(mpd_Connection * connection, const char *name);
+
+    void mpd_sendRmCommand(mpd_Connection * connection, const char *name);
+
+    void mpd_sendRenameCommand(mpd_Connection * connection, const char *from, const char *to);
+
+    void mpd_sendShuffleCommand(mpd_Connection * connection);
+
+    void mpd_sendClearCommand(mpd_Connection * connection);
+
+/* use this to start playing at the beginning, useful when in random mode */
+#define MPD_PLAY_AT_BEGINNING	-1
+
+    void mpd_sendPlayCommand(mpd_Connection * connection, int songNum);
+
+    void mpd_sendPlayIdCommand(mpd_Connection * connection, int songNum);
+
+    void mpd_sendStopCommand(mpd_Connection * connection);
+
+    void mpd_sendPauseCommand(mpd_Connection * connection, int pauseMode);
+
+    void mpd_sendNextCommand(mpd_Connection * connection);
+
+    void mpd_sendPrevCommand(mpd_Connection * connection);
+
+    void mpd_sendMoveCommand(mpd_Connection * connection, int from, int to);
+
+    void mpd_sendMoveIdCommand(mpd_Connection * connection, int from, int to);
+
+    void mpd_sendSwapCommand(mpd_Connection * connection, int song1, int song2);
+
+    void mpd_sendSwapIdCommand(mpd_Connection * connection, int song1, int song2);
+
+    void mpd_sendSeekCommand(mpd_Connection * connection, int song, int time);
+
+    void mpd_sendSeekIdCommand(mpd_Connection * connection, int song, int time);
+
+    void mpd_sendRepeatCommand(mpd_Connection * connection, int repeatMode);
+
+    void mpd_sendRandomCommand(mpd_Connection * connection, int randomMode);
+
+    void mpd_sendSetvolCommand(mpd_Connection * connection, int volumeChange);
+
+/* WARNING: don't use volume command, its depreacted */
+    void mpd_sendVolumeCommand(mpd_Connection * connection, int volumeChange);
+
+    void mpd_sendCrossfadeCommand(mpd_Connection * connection, int seconds);
+
+    void mpd_sendUpdateCommand(mpd_Connection * connection, char *path);
+
+/* returns the update job id, call this after a update command*/
+    int mpd_getUpdateId(mpd_Connection * connection);
+
+    void mpd_sendPasswordCommand(mpd_Connection * connection, const char *pass);
+
+/* after executing a command, when your done with it to get its status
+ * (you want to check connection-&gt;error for an error)
+ */
+    void mpd_finishCommand(mpd_Connection * connection);
+
+/* command list stuff, use this to do things like add files very quickly */
+    void mpd_sendCommandListBegin(mpd_Connection * connection);
+
+    void mpd_sendCommandListOkBegin(mpd_Connection * connection);
+
+    void mpd_sendCommandListEnd(mpd_Connection * connection);
+
+/* advance to the next listOk
+ * returns 0 if advanced to the next list_OK,
+ * returns -1 if it advanced to an OK or ACK */
+    int mpd_nextListOkCommand(mpd_Connection * connection);
+
+    typedef struct _mpd_OutputEntity {
+	int id;
+	char *name;
+	int enabled;
+    } mpd_OutputEntity;
+
+    void mpd_sendOutputsCommand(mpd_Connection * connection);
+
+    mpd_OutputEntity *mpd_getNextOutput(mpd_Connection * connection);
+
+    void mpd_sendEnableOutputCommand(mpd_Connection * connection, int outputId);
+
+    void mpd_sendDisableOutputCommand(mpd_Connection * connection, int outputId);
+
+    void mpd_freeOutputElement(mpd_OutputEntity * output);
+
+/**
+ * @param connection a #mpd_Connection
+ *
+ * Queries mpd for the allowed commands
+ */
+    void mpd_sendCommandsCommand(mpd_Connection * connection);
+
+/**
+ * @param connection a #mpd_Connection
+ *
+ * Queries mpd for the not allowed commands
+ */
+    void mpd_sendNotCommandsCommand(mpd_Connection * connection);
+
+/**
+ * @param connection a #mpd_Connection
+ *
+ * returns the next supported command.
+ *
+ * @returns a string, needs to be free'ed
+ */
+    char *mpd_getNextCommand(mpd_Connection * connection);
+
+    void mpd_sendUrlHandlersCommand(mpd_Connection * connection);
+
+    char *mpd_getNextHandler(mpd_Connection * connection);
+
+    void mpd_sendTagTypesCommand(mpd_Connection * connection);
+
+    char *mpd_getNextTagType(mpd_Connection * connection);
+
+/**
+ * @param connection a MpdConnection
+ * @param path	the path to the playlist.
+ *
+ * List the content, with full metadata, of a stored playlist.
+ *
+ */
+    void mpd_sendListPlaylistInfoCommand(mpd_Connection * connection, char *path);
+
+/**
+ * @param connection a MpdConnection
+ * @param path	the path to the playlist.
+ *
+ * List the content of a stored playlist.
+ *
+ */
+    void mpd_sendListPlaylistCommand(mpd_Connection * connection, char *path);
+
+/**
+ * @param connection a #mpd_Connection
+ * @param exact if to match exact
+ *
+ * starts a search, use mpd_addConstraintSearch to add
+ * a constraint to the search, and mpd_commitSearch to do the actual search
+ */
+    void mpd_startSearch(mpd_Connection * connection, int exact);
+
+/**
+ * @param connection a #mpd_Connection
+ * @param type
+ * @param name
+ */
+    void mpd_addConstraintSearch(mpd_Connection * connection, int type, const char *name);
+
+/**
+ * @param connection a #mpd_Connection
+ */
+    void mpd_commitSearch(mpd_Connection * connection);
+
+/**
+ * @param connection a #mpd_Connection
+ * @param type The type to search for
+ *
+ * starts a search for fields... f.e. get a list of artists would be:
+ * @code
+ * mpd_startFieldSearch(connection, MPD_TAG_ITEM_ARTIST);
+ * mpd_commitSearch(connection);
+ * @endcode
+ *
+ * or get a list of artist in genre "jazz" would be:
+ * @code
+ * mpd_startFieldSearch(connection, MPD_TAG_ITEM_ARTIST);
+ * mpd_addConstraintSearch(connection, MPD_TAG_ITEM_GENRE, "jazz")
+ * mpd_commitSearch(connection);
+ * @endcode
+ *
+ * mpd_startSearch will return  a list of songs (and you need mpd_getNextInfoEntity)
+ * this one will return a list of only one field (the one specified with type) and you need
+ * mpd_getNextTag to get the results
+ */
+    void mpd_startFieldSearch(mpd_Connection * connection, int type);
+
+    void mpd_startPlaylistSearch(mpd_Connection * connection, int exact);
+
+    void mpd_startStatsSearch(mpd_Connection * connection);
+
+    void mpd_sendPlaylistClearCommand(mpd_Connection * connection, char *path);
+
+    void mpd_sendPlaylistAddCommand(mpd_Connection * connection, char *playlist, char *path);
+
+    void mpd_sendPlaylistMoveCommand(mpd_Connection * connection, char *playlist, int from, int to);
+
+    void mpd_sendPlaylistDeleteCommand(mpd_Connection * connection, char *playlist, int pos);
+#ifdef __cplusplus
+}
+#endif
+#endif
</pre></body></html>