PcapPlusPlus
|
#include <PcapFilter.h>
Public Member Functions | |
TcpWindowSizeFilter (uint16_t windowSize, FilterOperator op) | |
void | parseToString (std::string &result) |
void | setWindowSize (uint16_t windowSize) |
Public Member Functions inherited from pcpp::IFilterWithOperator | |
void | setOperator (FilterOperator op) |
Public Member Functions inherited from pcpp::GeneralFilter | |
virtual | ~GeneralFilter () |
A class for filtering TCP packets that matches TCP window-size criteria
For deeper understanding of the filter concept please refer to PcapFilter.h
|
inline |
A constructor that get the window-size and operator and creates the filter. For example: "filter all TCP packets with window-size less than 1000"
[in] | windowSize | The window-size value that will be used in the 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 window-size value
[in] | windowSize | The window-size value that will be used in the filter |