Update HTTPServerRequest.h

This commit is contained in:
alexey-milovidov 2021-06-17 01:50:06 +03:00 committed by GitHub
parent ba08a580f8
commit 16931a661c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,10 @@ private:
MAX_VERSION_LENGTH = 8,
};
const size_t max_uri_size, max_fields_number, max_field_name_size, max_field_value_size;
const size_t max_uri_size;
const size_t max_fields_number;
const size_t max_field_name_size;
const size_t max_field_value_size;
std::unique_ptr<ReadBuffer> stream;
Poco::Net::SocketImpl * socket;