Realistic 3D camera system
3D camera system components
Public Attributes | List of all members
http::server4::request Struct Reference

A request received from a client. More...

#include <request.hpp>

Public Attributes

std::string method
 The request method, e.g. "GET", "POST". More...
 
std::string uri
 The requested URI, such as a path to a file. More...
 
int http_version_major
 Major version number, usually 1. More...
 
int http_version_minor
 Minor version number, usually 0 or 1. More...
 
std::vector< headerheaders
 The headers included with the request. More...
 
std::string content
 The optional content sent with the request. More...
 

Detailed Description

A request received from a client.

Definition at line 22 of file request.hpp.

Member Data Documentation

std::string http::server4::request::content

The optional content sent with the request.

Definition at line 40 of file request.hpp.

std::vector<header> http::server4::request::headers

The headers included with the request.

Definition at line 37 of file request.hpp.

int http::server4::request::http_version_major

Major version number, usually 1.

Definition at line 31 of file request.hpp.

int http::server4::request::http_version_minor

Minor version number, usually 0 or 1.

Definition at line 34 of file request.hpp.

std::string http::server4::request::method

The request method, e.g. "GET", "POST".

Definition at line 25 of file request.hpp.

std::string http::server4::request::uri

The requested URI, such as a path to a file.

Definition at line 28 of file request.hpp.


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