mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
ae2a956d88
This added support for the standard HTTP/1.1 methods: * OPTIONS - Query the server to tell what features are supported. * DELETE - Delete a resource on a server. In Icecast2 context this is about what is known as 'kick source'. * TRACE - Asks the server to return the request to the client as body. The client is to send a body-less request and the server will return with a 200 OK and the body to to be the exact bitstream it got from the client (or any (reverse) proxy). The Content-Type is to be set to 'message/http'. * CONNECT - Client asks the server to proxy the request to the given resource. This hardly seems to make sense for Icecast2 but may be used by some clients such as libshout. Therefor I added it as well so we have at least an ID assigned to it. Please note that this is a ABI breaker and you will need to recompile your projects (use 'make clean all'). See: RFC2616 |
||
---|---|---|
.. | ||
BUILDING | ||
COPYING | ||
httpp.c | ||
httpp.h | ||
Makefile.am | ||
README | ||
test.c | ||
TODO |
httpp is a simple http parser licensed under the lgpl created by jack moffitt <jack@icecast.org>