mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
/* Copyright (C) 2025 Open Information Security Foundation
|
|
*
|
|
* You can copy, redistribute or modify this Program under the terms of
|
|
* the GNU General Public License version 2 as published by the Free
|
|
* Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* version 2 along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* \file Input to bindgen to generate Rust bindings.
|
|
*
|
|
* This file should include every header that should have Rust
|
|
* bindings generated for it. It is then used by bindgen to generate
|
|
* the Rust bindings.
|
|
*/
|
|
|
|
#ifndef SURICATA_BINDGEN_H
|
|
#define SURICATA_BINDGEN_H
|
|
|
|
#include "stdint.h"
|
|
#include "stdbool.h"
|
|
#include "stddef.h"
|
|
|
|
#define WARN_UNUSED
|
|
|
|
#include "app-layer-protos.h"
|
|
#include "suricata-plugin.h"
|
|
// do not export struct fields only used for debug validation
|
|
// do this after suricata-plugin.h which needs autoconf.h to define SC_PACKAGE_VERSION
|
|
#undef DEBUG_VALIDATION
|
|
#include "output-eve-bindgen.h"
|
|
#include "detect-engine-register.h"
|
|
#include "detect-engine-buffer.h"
|
|
#include "detect-engine-helper.h"
|
|
#include "detect-engine-state.h"
|
|
#include "detect-parse.h"
|
|
|
|
#include "util-debug.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "app-layer-detect-proto.h"
|
|
#include "app-layer-parser.h"
|
|
#include "app-layer-register.h"
|
|
#include "app-layer-events.h"
|
|
|
|
#include "util-mpm.h"
|
|
#include "util-file.h"
|
|
#include "util-var.h"
|
|
#include "util-spm-bs.h"
|
|
|
|
#include "flow-bindgen.h"
|
|
|
|
#endif
|