aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/HttpdClient.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* output/*: move to output/plugins/Max Kellermann2014-01-231-485/+0
|
* copyright year 2014Max Kellermann2014-01-131-1/+1
|
* event/SocketMonitor: don't close the socket automaticallyMax Kellermann2014-01-061-0/+3
| | | | | | Users now have to call Close() explicitly. This simplifies using the class, as most users have automatic socket management already, and Steal() had to be used often.
* output/httpd: move queue size check to HttpdClient::PushPage()Max Kellermann2014-01-041-0/+6
| | | | Don't let the server care for client problems.
* output/httpd: wrap the std::list in std::queueMax Kellermann2014-01-041-5/+14
|
* output/httpd: merge duplicate code to ClearQueue()Max Kellermann2014-01-041-5/+12
|
* output/httpd: keep track of queue sizeMax Kellermann2014-01-041-12/+6
| | | | Don't iterate the std::list each time.
* output/httpd: use reference instead of pointerMax Kellermann2013-12-311-11/+11
|
* *: update copyright year to 2013Max Kellermann2013-10-301-1/+1
|
* output/httpd: accept icy-metadata with and without spaceOddegamra2013-10-261-1/+2
| | | | | | | | | | | Some, or most, Win32 audio players will pass "icy-metadata:1" to streaming servers. MPD expects a space between ":" and "1" at this point, and thus does not send any stream metadata. This applies to foobar2k and Winamp, for example. According to forums.radiotoolbox.com/viewtopic.php?t=74 not having a space there is expected behavior, so maybe MPD could accept both forms to determine if metadata should be sent or not.
* output/httpd: support HEAD requestsMax Kellermann2013-10-251-5/+24
|
* output/httpd: remove bogus assertionMax Kellermann2013-10-251-1/+0
|
* Util/ASCII: add StringEqualsCaseASCII() overload with lengthMax Kellermann2013-10-211-3/+3
| | | | Replaces GLib's g_ascii_strncasecmp().
* util/FormatString: new library to replace g_strdup_printf()Max Kellermann2013-10-191-4/+2
|
* event/BufferedSocket: pass writable pointer to OnSocketInput()Max Kellermann2013-10-151-6/+5
| | | | | Remove the const_cast from HttpdClient.cxx, and avoid one allocation in ClientRead.cxx.
* Mapper, ...: use memcmp() instead of strncmp() where appropriateMax Kellermann2013-10-141-2/+2
| | | | Micro-optimization.
* output/httpd: don't include glib.h in headerMax Kellermann2013-10-021-0/+2
|
* Log: new logging library APIMax Kellermann2013-10-021-13/+18
| | | | | Prepare to migrate away from GLib. Currently, we're still using GLib as a backend.
* use standard snprintf() instead of GLib g_snprintf()Max Kellermann2013-09-051-20/+20
|
* util/Error: new error passing libraryMax Kellermann2013-09-041-3/+2
| | | | Replaces GLib's GError.
* Makefile.am: move sources to libsystem.aMax Kellermann2013-08-071-1/+1
|
* output/httpd: use the BufferedSocket class for HttpdClientMax Kellermann2013-01-301-292/+145
|
* page: convert to C++Max Kellermann2013-01-301-25/+24
|
* icy_server: convert to C++Max Kellermann2013-01-301-1/+1
|
* output/httpd: move functions into the HttpdOutput classMax Kellermann2013-01-271-2/+2
|
* output/httpd: rename struct httpd_outputMax Kellermann2013-01-271-1/+1
|
* output/httpd: convert to C++Max Kellermann2013-01-151-0/+592