Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
e17da71a
Commit
e17da71a
authored
Oct 25, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/httpd: support HEAD requests
parent
610bef9f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
5 deletions
+30
-5
NEWS
NEWS
+1
-0
HttpdClient.cxx
src/output/HttpdClient.cxx
+24
-5
HttpdClient.hxx
src/output/HttpdClient.hxx
+5
-0
No files found.
NEWS
View file @
e17da71a
...
...
@@ -28,6 +28,7 @@ ver 0.18 (2012/??/??)
- new option "tags" may be used to disable sending tags to output
- alsa: workaround for noise after manual song change
- ffado: remove broken plugin
- httpd: support HEAD requests
- mvp: remove obsolete plugin
* improved decoder/output error reporting
* eliminate timer wakeup on idle MPD
...
...
src/output/HttpdClient.cxx
View file @
e17da71a
...
...
@@ -66,7 +66,8 @@ HttpdClient::BeginResponse()
state
=
RESPONSE
;
current_page
=
nullptr
;
httpd
->
SendHeader
(
*
this
);
if
(
!
head_method
)
httpd
->
SendHeader
(
*
this
);
}
/**
...
...
@@ -78,16 +79,25 @@ HttpdClient::HandleLine(const char *line)
assert
(
state
!=
RESPONSE
);
if
(
state
==
REQUEST
)
{
if
(
memcmp
(
line
,
"GET /"
,
5
)
!=
0
)
{
if
(
memcmp
(
line
,
"HEAD /"
,
6
)
==
0
)
{
line
+=
6
;
head_method
=
true
;
}
else
if
(
memcmp
(
line
,
"GET /"
,
5
)
==
0
)
{
line
+=
5
;
}
else
{
/* only GET is supported */
LogWarning
(
httpd_output_domain
,
"malformed request line from client"
);
return
false
;
}
line
=
strchr
(
line
+
5
,
' '
);
line
=
strchr
(
line
,
' '
);
if
(
line
==
nullptr
||
memcmp
(
line
+
1
,
"HTTP/"
,
5
)
!=
0
)
{
/* HTTP/0.9 without request headers */
if
(
head_method
)
return
false
;
BeginResponse
();
return
true
;
}
...
...
@@ -98,6 +108,7 @@ HttpdClient::HandleLine(const char *line)
}
else
{
if
(
*
line
==
0
)
{
/* empty line: request is finished */
BeginResponse
();
return
true
;
}
...
...
@@ -185,6 +196,7 @@ HttpdClient::HttpdClient(HttpdOutput *_httpd, int _fd, EventLoop &_loop,
:
BufferedSocket
(
_fd
,
_loop
),
httpd
(
_httpd
),
state
(
REQUEST
),
head_method
(
false
),
dlna_streaming_requested
(
false
),
metadata_supported
(
_metadata_supported
),
metadata_requested
(
false
),
metadata_sent
(
true
),
...
...
@@ -427,8 +439,15 @@ HttpdClient::OnSocketInput(void *data, size_t length)
return
InputResult
::
CLOSED
;
}
if
(
state
==
RESPONSE
&&
!
SendResponse
())
return
InputResult
::
CLOSED
;
if
(
state
==
RESPONSE
)
{
if
(
!
SendResponse
())
return
InputResult
::
CLOSED
;
if
(
head_method
)
{
LockClose
();
return
InputResult
::
CLOSED
;
}
}
return
InputResult
::
AGAIN
;
}
...
...
src/output/HttpdClient.hxx
View file @
e17da71a
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment