mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Allow leading and trailing whilespaces before/after header field values
This commit is contained in:
parent
31e53d21e4
commit
c76d0e4ab3
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ inline int get_header_value_int(const Headers& headers, const char* key, int def
|
|||
|
||||
inline bool read_headers(Stream& strm, Headers& headers)
|
||||
{
|
||||
static std::regex re("(.+?): (.+?)\r\n");
|
||||
static std::regex re(R"((.+?):\s*(.+?)\s*\r\n)");
|
||||
|
||||
const auto bufsiz = 2048;
|
||||
char buf[bufsiz];
|
||||
|
|
Loading…
Reference in a new issue