struct DEV
{
DEV() : device("any"), filterExpression("ip"), handle(NULL), fd(-1) {}
struct DEV
{
DEV() : device("any"), filterExpression("ip"), handle(NULL), fd(-1) {}
- DEV(const std::string & d) : device(d), filterExpression("ip"), handle(NULL), fd(-1) {}
+ explicit DEV(const std::string & d) : device(d), filterExpression("ip"), handle(NULL), fd(-1) {}
DEV(const std::string & d, const std::string & f)
: device(d), filterExpression(f), handle(NULL), fd(-1) {}
DEV(const std::string & d, const std::string & f)
: device(d), filterExpression(f), handle(NULL), fd(-1) {}