bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Public Member Functions | Private Attributes
bref::HttpResponse Class Reference

HTTP response container. More...

#include <HttpResponse.h>

Inherits std::map< std::string, BrefValue >.

List of all members.

Public Member Functions

 HttpResponse ()
 Construct an empty HTTP response.
 ~HttpResponse ()
 Destructor.
const VersiongetVersion () const
 Get the current HTTP version.
status_codes::Type getStatus () const
 Get the HTTP result code.
const std::string & getReason () const
 Get the HTTP result reason.
Buffer getRawData () const
 Get a buffer containing the response header as raw data. Example :
void setVersion (const Version &version)
 Set HTTP version.
void setStatus (status_codes::Type type)
 Set HTTP result code.
void setReason (const std::string &reason)
 Set HTTP result reason.

Private Attributes

Version version_
 Contains used HTTP version.
status_codes::Type statusCode_
 Contains HTTP result code For example : bref::status_codes::OK.
std::string reason_
 Contains HTTP result reason For example : "I'm a Teapot".

Detailed Description

HTTP response container.

Contains a HTTP request using HttpHeader

See also:
HttpRequest

Member Function Documentation

Get a buffer containing the response header as raw data. Example :

 "HTTP/1.1 200 OK\r\n" 
Returns:
The response header as raw data.
const std::string& bref::HttpResponse::getReason ( ) const

Get the HTTP result reason.

Returns:
HTTP result reason
See also:
setReason()

Get the HTTP result code.

Returns:
HTTP result code
See also:
setStatus()

Get the current HTTP version.

Returns:
Used HTTP version
See also:
setVersion()
void bref::HttpResponse::setReason ( const std::string &  reason)

Set HTTP result reason.

Parameters:
reasonThe HTTP result reason.
See also:
getReason()

Set HTTP result code.

Parameters:
typeThe HTTP result code.
See also:
getStatus()
void bref::HttpResponse::setVersion ( const Version version)

Set HTTP version.

Parameters:
versionThe HTTP version.
See also:
getVersion()

The documentation for this class was generated from the following file: