HTTPMessage.Request

The 12 standard fields for HTTP messages. Use accessors. An HTTPMessage is either a Request or Response. Once an accessor for either is used, that fixes the type of HTTPMessage. If an access is then used for the other type, a DCHECK will fail.

class HTTPMessage
protected
struct Request {
Address _clientAddress;
string _clientIP;
string _clientPort;
HTTPMethod _method;
string _path;
string _query;
string _url;
}

Meta