mirror of
https://github.com/falcosecurity/falco.git
synced 2026-01-13 19:54:50 +00:00
This makes the output of --list a bit more precise to only include filter fields and not output fields. Signed-off-by: Mark Stemm <mark.stemm@gmail.com>
25 lines
968 B
C
25 lines
968 B
C
/*
|
|
Copyright (C) 2020 The Falco Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// The version of rules/filter fields/etc supported by this falco
|
|
// engine.
|
|
#define FALCO_ENGINE_VERSION (9)
|
|
|
|
// This is the result of running "falco --list -N | sha256sum" and
|
|
// represents the fields supported by this version of falco. It's used
|
|
// at build time to detect a changed set of fields.
|
|
#define FALCO_FIELDS_CHECKSUM "3153c620bf3640fab536a2d0e42aa69f10482d741ef3fa72fd8d994b0261ec55"
|