aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/httpd_internal.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* output_plugin: the plugin allocates the audio_output objectMax Kellermann2011-09-191-0/+3
| | | | | | Pass audio_output objects around instead of void pointers. This will give some more control to the plugin, and prepares for non-blocking audio outputs.
* rename 'Timer' to 'struct timer'Jonathan Neuschäfer2011-08-271-2/+2
|
* Merge commit 'release-0.16.2'Max Kellermann2011-03-191-1/+1
|\ | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac
| * general: whitespace cleanupThomas Jansen2011-02-091-1/+1
| | | | | | | | | | Remove trailing whitespace found by this command: find -name '*.[ch]' | xargs grep "[[:space:]]$"
* | copyright year 2011Max Kellermann2011-01-291-1/+1
|/
* output/httpd: use the new server_socket libraryMax Kellermann2010-10-051-22/+1
|
* output/httpd: forced flush after 32 kB of input dataMax Kellermann2010-08-311-0/+8
| | | | | Avoid buffer underruns on the streaming client, if the encoder is "too efficient" (e.g. when encoding silence while paused).
* output/httpd: added name/genre/website configurationJames Pike2010-04-051-0/+13
|
* Add support for building httpd_output plugin for win32Avuton Olrich2010-03-221-0/+5
|
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* output/httpd: bind port when output is enabledMax Kellermann2009-11-051-0/+7
| | | | | | Implement the methods enable() and disable(). Bind the HTTP port in the enable() method, but reject all incoming connections until the output is opened.
* httpd: add config option to limit number of clientsViliam Mateicka2009-10-291-0/+6
|
* Implemented basic icy support for the httpd outputHagen Schink2009-04-131-0/+5
| | | | | | [mk: folded with patch "Put icy related functions in extra source files"; moved icy_server.c from HAVE_CURL to ENABLE_HTTPD_OUTPUT; removed an unused variable]
* httpd: new output plugin to replace "shout"Max Kellermann2009-03-151-0/+112
Let's get rid of the "shout" plugin, and the awfully complicated icecast daemon setup! MPD can do better if it's doing the HTTP server stuff on its own. This new plugin has several advantages: - easier to set up - only one daemon, no password settings, no mount settings - MPD controls the encoder and thus already knows the packet boundaries - icecast has to parse them - MPD doesn't bother to encode data while nobody is listening This implementation is very experimental (no header parsing, ignores request URI, no icy-metadata, ...). It should be able to suport several encoders in parallel in the future (with different bit rates, different codec, ...), to make MPD the perfect streaming server. Once MPD gets multi-player support, we can even mount several different radio stations on one server.