diff options
author | Max Kellermann <max@duempel.org> | 2013-10-25 00:32:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-25 00:32:48 +0200 |
commit | e17da71a704759316912d4f2b7eb46d95a828798 (patch) | |
tree | 1ef47b6c6c74591c7858acae3476e7bc84b382e2 /src/output/HttpdClient.hxx | |
parent | 610bef9ff513aebdedbaf8f193e9a5ae61064284 (diff) | |
download | mpd-e17da71a704759316912d4f2b7eb46d95a828798.tar.gz mpd-e17da71a704759316912d4f2b7eb46d95a828798.tar.xz mpd-e17da71a704759316912d4f2b7eb46d95a828798.zip |
output/httpd: support HEAD requests
Diffstat (limited to 'src/output/HttpdClient.hxx')
-rw-r--r-- | src/output/HttpdClient.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/output/HttpdClient.hxx b/src/output/HttpdClient.hxx index 90295fdf7..66a819232 100644 --- a/src/output/HttpdClient.hxx +++ b/src/output/HttpdClient.hxx @@ -67,6 +67,11 @@ class HttpdClient final : public BufferedSocket { size_t current_position; /** + * Is this a HEAD request? + */ + bool head_method; + + /** * If DLNA streaming was an option. */ bool dlna_streaming_requested; |