Botan 3.0.0
Crypto and TLS for C&
Public Member Functions | List of all members
Botan::HTTP::Response Class Referencefinal

#include <http_util.h>

Public Member Functions

const std::vector< uint8_t > & body () const
 
const std::map< std::string, std::string > & headers () const
 
 Response ()
 
 Response (unsigned int status_code, std::string_view status_message, const std::vector< uint8_t > &body, const std::map< std::string, std::string > &headers)
 
unsigned int status_code () const
 
std::string status_message () const
 
void throw_unless_ok ()
 

Detailed Description

Definition at line 37 of file http_util.h.

Constructor & Destructor Documentation

◆ Response() [1/2]

Botan::HTTP::Response::Response ( )
inline

Definition at line 40 of file http_util.h.

40: m_status_code(0), m_status_message("Uninitialized") {}

◆ Response() [2/2]

Botan::HTTP::Response::Response ( unsigned int  status_code,
std::string_view  status_message,
const std::vector< uint8_t > &  body,
const std::map< std::string, std::string > &  headers 
)
inline

Definition at line 42 of file http_util.h.

44 :
45 m_status_code(status_code),
46 m_status_message(status_message),
47 m_body(body),
48 m_headers(headers) {}
const std::vector< uint8_t > & body() const
Definition: http_util.h:52
const std::map< std::string, std::string > & headers() const
Definition: http_util.h:54
unsigned int status_code() const
Definition: http_util.h:50
std::string status_message() const
Definition: http_util.h:56

Member Function Documentation

◆ body()

const std::vector< uint8_t > & Botan::HTTP::Response::body ( ) const
inline

Definition at line 52 of file http_util.h.

52{ return m_body; }

Referenced by Botan::HTTP::operator<<().

◆ headers()

const std::map< std::string, std::string > & Botan::HTTP::Response::headers ( ) const
inline

Definition at line 54 of file http_util.h.

54{ return m_headers; }

Referenced by Botan::HTTP::operator<<().

◆ status_code()

unsigned int Botan::HTTP::Response::status_code ( ) const
inline

Definition at line 50 of file http_util.h.

50{ return m_status_code; }

Referenced by Botan::HTTP::operator<<(), and throw_unless_ok().

◆ status_message()

std::string Botan::HTTP::Response::status_message ( ) const
inline

Definition at line 56 of file http_util.h.

56{ return m_status_message; }

Referenced by Botan::HTTP::operator<<(), and throw_unless_ok().

◆ throw_unless_ok()

void Botan::HTTP::Response::throw_unless_ok ( )
inline

Definition at line 58 of file http_util.h.

59 {
60 if(status_code() != 200)
61 throw HTTP_Error(status_message());
62 }

References status_code(), and status_message().


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