mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-23 19:07:55 +00:00
chore(userspace/falco): remove unused dep from falco_outputs
Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
This commit is contained in:
@@ -762,7 +762,7 @@ int falco_init(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
outputs = new falco_outputs(engine);
|
outputs = new falco_outputs();
|
||||||
outputs->set_inspector(inspector);
|
outputs->set_inspector(inspector);
|
||||||
|
|
||||||
// Some combinations of arguments are not allowed.
|
// Some combinations of arguments are not allowed.
|
||||||
|
@@ -38,8 +38,7 @@ limitations under the License.
|
|||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
falco_outputs::falco_outputs(falco_engine *engine):
|
falco_outputs::falco_outputs():
|
||||||
m_falco_engine(engine),
|
|
||||||
m_initialized(false),
|
m_initialized(false),
|
||||||
m_buffered(true),
|
m_buffered(true),
|
||||||
m_json_output(false),
|
m_json_output(false),
|
||||||
|
@@ -34,7 +34,7 @@ limitations under the License.
|
|||||||
class falco_outputs : public falco_common
|
class falco_outputs : public falco_common
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
falco_outputs(falco_engine *engine);
|
falco_outputs();
|
||||||
virtual ~falco_outputs();
|
virtual ~falco_outputs();
|
||||||
|
|
||||||
void init(bool json_output,
|
void init(bool json_output,
|
||||||
@@ -61,8 +61,6 @@ public:
|
|||||||
void reopen_outputs();
|
void reopen_outputs();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
falco_engine *m_falco_engine;
|
|
||||||
|
|
||||||
bool m_initialized;
|
bool m_initialized;
|
||||||
|
|
||||||
std::vector<falco::outputs::abstract_output *> m_outputs;
|
std::vector<falco::outputs::abstract_output *> m_outputs;
|
||||||
|
Reference in New Issue
Block a user