Document HTTP client quirks known to mt-daapd

This commit is contained in:
Julien BLACHE 2009-04-25 11:09:25 +02:00
parent 651d946cc2
commit f332f992aa

View File

@ -43,6 +43,21 @@
#include "httpd_rsp.h"
/*
* HTTP client quirks by User-Agent, from mt-daapd
*
* - Roku:
* + Does not encode space as + in query string
* - iTunes:
* + Does not encode space as + in query string
* + Connection: Keep-Alive on HTTP error 401
* - Hifidelio:
* + Connection: Keep-Alive for streaming (Connection: close not honoured)
*
* These quirks are not implemented. Implement as needed.
*/
#define STREAM_CHUNK_SIZE (512 * 1024)
#define WEBFACE_ROOT "/usr/share/mt-daapd/admin-root/"