Commit a8df5e10 authored by Max Kellermann's avatar Max Kellermann

input/curl: use StringView::StartsWith()

parent ba4f1da4
...@@ -173,10 +173,10 @@ gcc_pure ...@@ -173,10 +173,10 @@ gcc_pure
static bool static bool
IsResponseBoundaryHeader(StringView s) noexcept IsResponseBoundaryHeader(StringView s) noexcept
{ {
return s.size > 5 && (memcmp(s.data, "HTTP/", 5) == 0 || return s.size > 5 && (s.StartsWith("HTTP/") ||
/* the proprietary "ICY 200 OK" is /* the proprietary "ICY 200 OK" is
emitted by Shoutcast */ emitted by Shoutcast */
memcmp(s.data, "ICY 2", 5) == 0); s.StartsWith("ICY 2"));
} }
inline void inline void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment