Constructor ! * Create a new processor */
| 98 | * Create a new processor |
| 99 | */ |
| 100 | explicit CapturePacket(std::string name, utils::Identifier uuid = utils::Identifier()) |
| 101 | : Processor(name, uuid), |
| 102 | capture_bluetooth_(false), |
| 103 | pcap_batch_size_(50), |
| 104 | logger_(logging::LoggerFactory<CapturePacket>::getLogger()) { |
| 105 | mover = std::unique_ptr<PacketMovers>(new PacketMovers()); |
| 106 | } |
| 107 | // Destructor |
| 108 | virtual ~CapturePacket(); |
| 109 | // Processor Name |