chore(userspace/falco): simplify files naming

Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
This commit is contained in:
Leonardo Grasso
2020-09-24 14:49:00 +02:00
committed by poiana
parent 0ff220de1e
commit 6451a55d82
18 changed files with 31 additions and 31 deletions

View File

@@ -47,10 +47,10 @@ add_executable(
configuration.cpp
logger.cpp
falco_outputs.cpp
falco_outputs_file.cpp
falco_outputs_program.cpp
falco_outputs_stdout.cpp
falco_outputs_syslog.cpp
outputs_file.cpp
outputs_program.cpp
outputs_stdout.cpp
outputs_syslog.cpp
event_drops.cpp
statsfilewriter.cpp
falco.cpp
@@ -61,12 +61,12 @@ else()
configuration.cpp
logger.cpp
falco_outputs.cpp
falco_outputs_file.cpp
falco_outputs_grpc.cpp
falco_outputs_http.cpp
falco_outputs_program.cpp
falco_outputs_stdout.cpp
falco_outputs_syslog.cpp
outputs_file.cpp
outputs_grpc.cpp
outputs_http.cpp
outputs_program.cpp
outputs_stdout.cpp
outputs_syslog.cpp
event_drops.cpp
statsfilewriter.cpp
falco.cpp

View File

@@ -25,13 +25,13 @@ limitations under the License.
#include "formats.h"
#include "logger.h"
#include "falco_outputs_file.h"
#include "falco_outputs_program.h"
#include "falco_outputs_stdout.h"
#include "falco_outputs_syslog.h"
#include "outputs_file.h"
#include "outputs_program.h"
#include "outputs_stdout.h"
#include "outputs_syslog.h"
#ifndef MINIMAL_BUILD
#include "falco_outputs_http.h"
#include "falco_outputs_grpc.h"
#include "outputs_http.h"
#include "outputs_grpc.h"
#endif
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -24,7 +24,7 @@ limitations under the License.
#include "falco_common.h"
#include "token_bucket.h"
#include "falco_engine.h"
#include "falco_output.h"
#include "outputs.h"
//
// This class acts as the primary interface between a program and the

View File

@@ -16,7 +16,7 @@ limitations under the License.
#include "config_falco.h"
#include "grpc_server_impl.h"
#include "falco_outputs_queue.h"
#include "outputs_queue.h"
#include "logger.h"
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
#include "falco_outputs_file.h"
#include "outputs_file.h"
#include <iostream>
#include <fstream>
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
#include <iostream>
#include <fstream>

View File

@@ -15,8 +15,8 @@ limitations under the License.
*/
#include <google/protobuf/util/time_util.h>
#include "falco_outputs_grpc.h"
#include "falco_outputs_queue.h"
#include "outputs_grpc.h"
#include "outputs_queue.h"
#include "falco_common.h"
#include "formats.h"
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
namespace falco
{

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
#include "falco_outputs_http.h"
#include "outputs_http.h"
#include "logger.h"
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
namespace falco
{

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
#include "falco_outputs_program.h"
#include "outputs_program.h"
#include <stdio.h>
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
namespace falco
{

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
#include "falco_outputs_stdout.h"
#include "outputs_stdout.h"
#include <iostream>
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
namespace falco
{

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
#include "falco_outputs_syslog.h"
#include "outputs_syslog.h"
#include <syslog.h>
#include "banned.h" // This raises a compilation error when certain functions are used

View File

@@ -16,7 +16,7 @@ limitations under the License.
#pragma once
#include "falco_output.h"
#include "outputs.h"
namespace falco
{