summaryrefslogtreecommitdiff
path: root/lib/httpserver/S3Client.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-07-31 06:40:34 +0000
committerChris Wilson <chris+github@qwirx.com>2015-07-31 06:40:34 +0000
commit6f071a6b68be4c61b40e9a4a0cd27deb46fd4fcd (patch)
tree043247b658c94b74365961b645575d9ecd92d6f2 /lib/httpserver/S3Client.h
parent8231689bc61f8fadb94e92fe35529cf8b378ab1d (diff)
Add a method on S3Client to check HTTPResponse for errors.
Throws a suitable exception if the response status code is not 200 OK.
Diffstat (limited to 'lib/httpserver/S3Client.h')
-rw-r--r--lib/httpserver/S3Client.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/httpserver/S3Client.h b/lib/httpserver/S3Client.h
index 3c4126ac..2d3f71cf 100644
--- a/lib/httpserver/S3Client.h
+++ b/lib/httpserver/S3Client.h
@@ -51,6 +51,7 @@ class S3Client
HTTPResponse GetObject(const std::string& rObjectURI);
HTTPResponse PutObject(const std::string& rObjectURI,
IOStream& rStreamToSend, const char* pContentType = NULL);
+ void CheckResponse(const HTTPResponse& response, const std::string& message) const;
private:
HTTPServer* mpSimulator;