------------------------------------------------------------------------- LogFilterIP::LogFilterIP -------------------------------------------------------------------------*/
| 764 | LogFilterIP::LogFilterIP |
| 765 | -------------------------------------------------------------------------*/ |
| 766 | LogFilterIP::LogFilterIP(const char *name, LogField *field, LogFilter::Action action, LogFilter::Operator oper, swoc::IPAddr value) |
| 767 | : LogFilter(name, field, action, oper) |
| 768 | { |
| 769 | m_addrs.mark(value); |
| 770 | this->init(); |
| 771 | } |
| 772 | |
| 773 | LogFilterIP::LogFilterIP(const char *name, LogField *field, LogFilter::Action action, LogFilter::Operator oper, size_t num_values, |
| 774 | IpAddr *value) |
nothing calls this directly
no test coverage detected