PcapPlusPlus
|
#include <PcapFilter.h>
Public Member Functions | |
IpV4IDFilter (uint16_t ipID, FilterOperator op) | |
void | parseToString (std::string &result) |
void | setIpID (uint16_t ipID) |
Public Member Functions inherited from pcpp::IFilterWithOperator | |
void | setOperator (FilterOperator op) |
Public Member Functions inherited from pcpp::GeneralFilter | |
virtual | ~GeneralFilter () |
A class for filtering IPv4 traffic by IP ID field of the IPv4 protocol, For example: "filter only IPv4 traffic which IP ID is greater than 1234"
For deeper understanding of the filter concept please refer to PcapFilter.h
|
inline |
A constructor that gets the IP ID to filter and the operator and creates the filter out of them
[in] | ipID | The IP ID to filter |
[in] | op | The operator to use (e.g "equal", "greater than", etc.) |
|
virtual |
A method that parses the class instance into BPF string format
[out] | result | An empty string that the parsing will be written into. If the string isn't empty, its content will be overridden |
Implements pcpp::GeneralFilter.
|
inline |
Set the IP ID to filter
[in] | ipID | The IP ID to filter |