PcapPlusPlus
|
#include <PcapFilter.h>
Public Member Functions | |
OrFilter () | |
OrFilter (std::vector< GeneralFilter *> &filters) | |
void | addFilter (GeneralFilter *filter) |
void | parseToString (std::string &result) |
Public Member Functions inherited from pcpp::GeneralFilter | |
virtual | ~GeneralFilter () |
A class for connecting several filters into one filter with logical "or" between them. For example: if the 2 filters are: "IPv4 address =
x.x.x.x" + "TCP port dst = 80", then the new filter will be: "IPv4 address = x.x.x.x _OR_ TCP port dst = 80"
This class follows the composite design pattern
For deeper understanding of the filter concept please refer to PcapFilter.h
|
inline |
An empty constructor for this class. Use addFilter() to add filters to the or condition
pcpp::OrFilter::OrFilter | ( | std::vector< GeneralFilter *> & | filters | ) |
A constructor that gets a list of pointers to filters and creates one filter from all filters with logical "or" between them
[in] | filters | The list of pointers to filters |
|
inline |
Add filter to the or condition
[in] | filter | The filter to add |
|
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.