PcapPlusPlus
24.09
|
#include <HttpLayer.h>
Public Member Functions | |
HttpResponseLayer (uint8_t *data, size_t dataLen, Layer *prevLayer, Packet *packet) | |
HttpResponseLayer (HttpVersion version, const HttpResponseStatusCode &statusCode, const std::string &statusCodeString) | |
HttpResponseLayer (HttpVersion version, const HttpResponseStatusCode &statusCode) | |
HttpResponseLayer (const HttpResponseLayer &other) | |
HttpResponseLayer & | operator= (const HttpResponseLayer &other) |
HttpResponseFirstLine * | getFirstLine () const |
HeaderField * | setContentLength (int contentLength, const std::string &prevFieldName="") |
int | getContentLength () const |
std::string | toString () const |
![]() | |
virtual | ~Layer () |
Layer * | getNextLayer () const |
Layer * | getPrevLayer () const |
ProtocolType | getProtocol () const |
bool | isMemberOfProtocolFamily (ProtocolTypeFamily protocolTypeFamily) const |
uint8_t * | getData () const |
size_t | getDataLen () const |
uint8_t * | getLayerPayload () const |
size_t | getLayerPayloadSize () const |
bool | isAllocatedToPacket () const |
void | copyData (uint8_t *toArr) const |
uint8_t * | getDataPtr (size_t offset=0) const |
Additional Inherited Members |
Represents an HTTP response header and inherits all basic functionality of HttpMessage and TextBasedProtocolMessage. The functionality that is added for this class is the HTTP first line concept. An HTTP response has the following first line: 200 OK HTTP/1.1 Since it's not an "ordinary" HTTP field, it requires a special treatment and gets a class of it's own: HttpResponseFirstLine. Unlike most L2-4 protocols, an HTTP response header can spread over more than 1 packet. PcapPlusPlus currently doesn't support a header that is spread over more than 1 packet so in such cases: 1) only the first packet will be parsed as HttpResponseLayer (the other packets won't be recognized as HttpResponseLayer) and 2) the HTTP header for the first packet won't be complete (as it continues in the following packets), this why PcapPlusPlus can indicate that HTTP response header is complete or not (doesn't end with "\r\n\r\n" or "\n\n") using HttpMessage::isHeaderComplete()
pcpp::HttpResponseLayer::HttpResponseLayer | ( | uint8_t * | data, |
size_t | dataLen, | ||
Layer * | prevLayer, | ||
Packet * | packet | ||
) |
A constructor that creates the layer from an existing packet raw data
[in] | data | A pointer to the raw data |
[in] | dataLen | Size of the data in bytes |
[in] | prevLayer | A pointer to the previous layer |
[in] | packet | A pointer to the Packet instance where layer will be stored in |
|
explicit |
A constructor that allocates a new HTTP response header with only the first line filled. Object will be created without further fields. The user can then add fields using addField() methods
[in] | version | HTTP version to be used |
[in] | statusCode | Status code to be used |
[in] | statusCodeString | Most status codes have their default string, e.g 200 is usually "OK", 404 is usually "Not Found", etc. But the user can set a non-default status code string and it will be written in the header first line. Empty string ("") means using the default status code string |
|
explicit |
A constructor that allocates a new HTTP response header with only the first line filled. Object will be created without further fields. The user can then add fields using addField() methods
[in] | version | HTTP version to be used |
[in] | statusCode | Status code to be used |
pcpp::HttpResponseLayer::HttpResponseLayer | ( | const HttpResponseLayer & | other | ) |
A copy constructor for this layer. This copy constructor inherits base copy constructor HttpMessage::HttpMessage() and adds the functionality of copying the first line as well
[in] | other | The instance to copy from |
int pcpp::HttpResponseLayer::getContentLength | ( | ) | const |
The length of the body of many HTTP response messages is determined by a HTTP header field called "Content-Length". This method parses this field, extracts its value and return it. If this field doesn't exist the method will return 0
|
inline |
HttpResponseLayer& pcpp::HttpResponseLayer::operator= | ( | const HttpResponseLayer & | other | ) |
An assignment operator overload for this layer. This method inherits base assignment operator HttpMessage::operator=() and adds the functionality of copying the first line as well
[in] | other | The instance to copy from |
HeaderField* pcpp::HttpResponseLayer::setContentLength | ( | int | contentLength, |
const std::string & | prevFieldName = "" |
||
) |
The length of the body of many HTTP response messages is determined by a HTTP header field called "Content-Length". This method sets The content-length field value. The method supports several cases:
[in] | contentLength | The content length value to set |
[in] | prevFieldName | Optional field, if specified and "Content-Length" field doesn't exist, it will be created after it |
|
virtual |
Implements pcpp::Layer.