diff options
author | Mauro Sardara <msardara+fdio@cisco.com> | 2018-02-16 17:22:53 +0100 |
---|---|---|
committer | Mauro Sardara <msardara+fdio@cisco.com> | 2018-02-16 17:22:53 +0100 |
commit | 953f18b834951680c738e9ce367b5a3eff91ccda (patch) | |
tree | 52bc181e53b9c76db1e14e693f473ca8cfca7250 /icnet/http/icnet_http_response.h | |
parent | c5e952d1cadbdf85c976e88ba97ea8bee7e422ab (diff) |
Improvements for HTTP messages processing
Change-Id: Iefcbfa1820bd47fd52475780c68c363a2baa2568
Signed-off-by: Mauro Sardara <msardara+fdio@cisco.com>
Diffstat (limited to 'icnet/http/icnet_http_response.h')
-rw-r--r-- | icnet/http/icnet_http_response.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/icnet/http/icnet_http_response.h b/icnet/http/icnet_http_response.h new file mode 100644 index 00000000..b925e1e3 --- /dev/null +++ b/icnet/http/icnet_http_response.h @@ -0,0 +1,59 @@ +/* + * Copyright (c) 2017 Cisco and/or its affiliates. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +#include "icnet_utils_sharable_vector.h" +#include "icnet_http_message.h" +#include "icnet_utils_array.h" + +#include <sstream> +#include <vector> +#include <map> + +namespace icnet { + +namespace http { + +class HTTPResponse : public HTTPMessage, public utils::SharableVector<uint8_t> { + public: + + HTTPResponse(const HTTPHeaders &headers, const HTTPPayload &payload); + + HTTPResponse(); + + HTTPHeaders &getHeaders() override; + + HTTPPayload &getPayload() override; + + std::string &getStatusCode(); + + std::string &getStatusString(); + + std::string &getHttpVersion() override; + + void parse(); + + private: + bool parseHeaders(); + + private: + std::string status_code_; + std::string status_string_; +}; + +} // end namespace http + +} // end namespace hicnet
\ No newline at end of file |