Skip to content

Commit

Permalink
rust/mysql: implement app-layer
Browse files Browse the repository at this point in the history
  • Loading branch information
lqk committed Sep 19, 2024
1 parent 1420c83 commit bbaee6d
Show file tree
Hide file tree
Showing 7 changed files with 4,514 additions and 0 deletions.
1 change: 1 addition & 0 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ pub mod ffi;
pub mod feature;
pub mod sdp;
pub mod ldap;
pub mod mysql;

#[allow(unused_imports)]
pub use suricata_lua_sys;
22 changes: 22 additions & 0 deletions rust/src/mysql/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* Copyright (C) 2022 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.
*/

//! MySQL parser, logger and application layer module.
//!
//! written by Kotodian <[email protected]>
pub mod mysql;
pub mod parser;
Loading

0 comments on commit bbaee6d

Please sign in to comment.