PcapPlusPlus
|
#include <HttpLayer.h>
Classes | |
class | HttpRequestFirstLineException |
Public Member Functions | |
HttpRequestLayer::HttpMethod | getMethod () |
bool | setMethod (HttpRequestLayer::HttpMethod newMethod) |
std::string | getUri () |
bool | setUri (std::string newUri) |
HttpVersion | getVersion () |
void | setVersion (HttpVersion newVersion) |
int | getSize () |
bool | isComplete () |
Static Public Member Functions | |
static HttpRequestLayer::HttpMethod | parseMethod (char *data, size_t dataLen) |
Represents an HTTP request header first line. The first line includes 3 parameters: HTTP method (e.g GET, POST, etc.), URI (e.g /main/index.html) and HTTP version (e.g HTTP/1.1). All these parameters are included in this class, and the user can retrieve or set them. This class cannot be instantiated by users, it's created inside HttpRequestLayer and user can get a pointer to an instance of it. All "get" methods of this class will retrieve the actual data of the HTTP request and the "set" methods will change the packet data. Since HTTP is a textual protocol, most fields aren't of fixed size and this also applies to the first line parameters. So most "set" methods of this class need in most cases to shorten or extend the data in HttpRequestLayer. These methods will return a false value if this action failed
|
inline |
|
inline |
std::string pcpp::HttpRequestFirstLine::getUri | ( | ) |
|
inline |
|
inline |
As explained in HttpRequestLayer, an HTTP header can spread over more than 1 packet, so when looking at a single packet the header can be partial. Same goes for the first line - it can spread over more than 1 packet. This method returns an indication whether the first line is partial
|
static |
A static method for parsing the HTTP method out of raw data
[in] | data | The raw data |
[in] | dataLen | The raw data length |
bool pcpp::HttpRequestFirstLine::setMethod | ( | HttpRequestLayer::HttpMethod | newMethod | ) |
Set the HTTP method
[in] | newMethod | The method to set |
bool pcpp::HttpRequestFirstLine::setUri | ( | std::string | newUri | ) |
Set the URI
[in] | newUri | The URI to set |
void pcpp::HttpRequestFirstLine::setVersion | ( | HttpVersion | newVersion | ) |
Set the HTTP version. This method doesn't return a value since all supported HTTP versions are of the same size (HTTP/0.9, HTTP/1.0, HTTP/1.1)
[in] | newVersion | The HTTP version to set |