aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/httpd_output_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* socket_util: move sockaddr_to_string() to resolver.cMax Kellermann2011-09-201-1/+1
|
* Merge branch 'v0.16.x'Max Kellermann2011-09-201-2/+2
|\
| * fd_util: add function close_socket()Max Kellermann2011-09-201-2/+2
| | | | | | | | Wrap close(), use closesocket() on WIN32/WinSock.
* | output_plugin: the plugin allocates the audio_output objectMax Kellermann2011-09-191-27/+41
| | | | | | | | | | | | 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.
* | output: per-plugin headerMax Kellermann2011-09-171-0/+1
| | | | | | | | | | Move the "extern" declarations from output_list.c, for more type safety.
* | Merge branch 'v0.16.x'Max Kellermann2011-07-201-2/+3
|\| | | | | | | | | | | Conflicts: src/player_thread.c src/playlist_control.c
| * encoder_plugin: add method pre_tag()Max Kellermann2011-07-201-1/+1
| | | | | | | | | | | | | | In the "vorbis" plugin, this is a copy of the old flush() method, while flush() gets a lot of code remove, it just sets the "flush" flag and nothing else. It doesn't start a new stream now, which should fix a few problems in some players.
| * output/httpd: explicitly convert size_t to bool in pause()Max Kellermann2011-07-201-1/+2
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-07-191-0/+1
|\| | | | | | | | | | | Conflicts: NEWS configure.ac
| * output/httpd: add missing g_free in error pathJonathan Neuschäfer2011-07-181-0/+1
| |
* | Merge commit 'release-0.16.2'Max Kellermann2011-03-191-0/+2
|\| | | | | | | | | | | | | Conflicts: Makefile.am NEWS configure.ac
| * output/httpd: include sys/socket.h only when building with libwrapMax Kellermann2011-03-181-1/+1
| | | | | | | | Fixes build failure on WIN32.
| * output/httpd: include sys/socket.h for AF_UNIXUlrich Spörlein2011-03-091-0/+1
| |
| * output/httpd: initialize unflushed_inputThomas Jansen2011-02-091-0/+1
| | | | | | | | | | | | | | | | | | | | This fixes the following valgrind warning occuring on the first call of httpd_output_read_page: ==20124== Conditional jump or move depends on uninitialised value(s) ==20124== at 0x425E65: httpd_output_read_page (httpd_output_plugin.c:240) ==20124== by 0x426087: httpd_output_open (httpd_output_plugin.c:279) ==20124== by 0x41D862: ao_open (output_plugin.h:206) ==20124== by 0x41E133: audio_output_task (output_thread.c:590)
* | copyright year 2011Max Kellermann2011-01-291-1/+1
|/
* output/httpd: implement delay()Max Kellermann2010-11-051-2/+11
|
* output/httpd: use the new server_socket libraryMax Kellermann2010-10-051-96/+31
|
* output/httpd: don't close socket in open() failureMax Kellermann2010-10-051-2/+0
| | | | | This cleanup call is obsolete, since we moved the binding code to enable()/disable().
* output/httpd: bind_to_address support (including IPv6)Thomas Jansen2010-09-251-12/+52
| | | | | | | | | Added support for a new optional configuration setting for the httpd output named "bind_to_address". Setting it to a specific IP address (v4 or v6) will cause the httpd output to bind to that address exclusively. Supporting multiple addresses in parallel is future work. This implements the feature requests #2998 and #2646.
* output/httpd: access sockaddr_storage object directlyMax Kellermann2010-09-231-3/+2
| | | | Work around aliasing warning.
* output/httpd: implement "pause"Max Kellermann2010-08-311-0/+19
| | | | | Send silence to all connected clients while paused, to avoid connection interruption.
* output/httpd: forced flush after 32 kB of input dataMax Kellermann2010-08-311-0/+15
| | | | | Avoid buffer underruns on the streaming client, if the encoder is "too efficient" (e.g. when encoding silence while paused).
* output/httpd: add libwrap supportTim Phipps2010-06-061-0/+28
| | | | | | libwrap support is in MPD but only for the control port. This patch adds support for the http port. The code is copied from src/client_new.c
* output/httpd: added name/genre/website configurationJames Pike2010-04-051-0/+6
|
* Add support for building httpd_output plugin for win32Avuton Olrich2010-03-221-0/+5
|
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* httpd: use get_mime_type to determine encoder contentViliam Mateicka2009-12-031-7/+6
|
* include config.h in all sourcesMax Kellermann2009-11-121-0/+1
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* fd_util: added O_NONBLOCK functionsMax Kellermann2009-11-081-1/+2
| | | | | Changed the wrappers for pipe(), socket(), accept(). On WIN32, this does not work for pipe().
* set the close-on-exec flag on all file descriptorsMax Kellermann2009-11-071-2/+3
| | | | | | | | | | | Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
* output/httpd: moved code to httpd_output_bind()Max Kellermann2009-11-071-28/+48
|
* output/httpd: bind port when output is enabledMax Kellermann2009-11-051-13/+42
| | | | | | 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-3/+14
|
* tag: removed the "_ITEM_" suffix from the enum namesMax Kellermann2009-10-131-3/+2
|
* output/httpd: removed duplicate sys/types.h includeMax Kellermann2009-07-141-4/+0
| | | | | The first patch by Patrick didn't work, because his "#ifdef HAVE_OSX" line would have required config.h.
* output/httpd: include sys/types.hMax Kellermann2009-07-061-0/+1
| | | | | | On Mac OS X, the httpd plugin cannot be compiled, because OS X's system headers do nto include sys/types.h, although they use u_int32_t.
* latest git, httpd_output_plugin compile fix, mac os xPatrik Weiskircher2009-05-101-0/+4
| | | | | | | | | | Hello, While compiling latest git I've received a compile error in the httpd_output_plugin. Small patch attached. Patrik
* httpd_output: save the page generated by encoder_tag()Max Kellermann2009-05-051-0/+21
| | | | | | | | Flush the encoder before calling encoder_tag(). The first page generated by the encoder after sending the tag will be the new "header" page, which is sent to all HTTP clients when they connect. This is a little bit specific to the vorbis encoder, but there are no other encoders which support tags (yet).
* httpd_output: moved code to httpd_output_encoder_to_clients()Max Kellermann2009-05-051-14/+32
| | | | | | Moved some code from httpd_output_encode_and_play() into separate functions httpd_output_broadcast_page() and httpd_output_encoder_to_clients().
* httpd_output: disable Icy-Metadata when encoder supports tagsMax Kellermann2009-05-051-15/+24
| | | | | | There's no reason to send both encoder tags and Icy-Metadata to the client. Let's disable Icy-Metadata when the encoder supports embedded tags.
* httpd_output: assert that tag!=NULLMax Kellermann2009-05-051-8/+7
| | | | | In the tag() method, MPD guarantees that it does not pass tag==NULL. Converted the runtime check to an assertion.
* Implemented basic icy support for the httpd outputHagen Schink2009-04-131-1/+36
| | | | | | [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: don't pass uninitialized page to httpd_client_check_queue()Max Kellermann2009-04-011-1/+1
| | | | | The httpd_client_check_queue() callback function does not use its "user_data" argument. Don't pass any, and fix the gcc warning.
* httpd: fixed encoder plugin checkJeffrey Middleton2009-03-171-1/+1
| | | | | Check if encoder_plugin!=NULL, not encoder_plugin_get (which is a function).
* httpd: new output plugin to replace "shout"Max Kellermann2009-03-151-0/+393
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.