From: Eric Leblond Date: Mon, 23 Jan 2023 19:07:07 +0000 (+0100) Subject: nfs: TX are not unidirectional X-Git-Tag: suricata-7.0.0-rc2~463 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b0d56c414977bc818fdb28f189f22f567391b90;p=thirdparty%2Fsuricata.git nfs: TX are not unidirectional NFS transactions are not unidirectional so we should not declare them as such. --- diff --git a/rust/src/nfs/nfs.rs b/rust/src/nfs/nfs.rs index c396b122b1..df73a2ce8f 100644 --- a/rust/src/nfs/nfs.rs +++ b/rust/src/nfs/nfs.rs @@ -2075,7 +2075,7 @@ pub unsafe extern "C" fn rs_nfs_udp_register_parser() { get_tx_data: rs_nfs_get_tx_data, get_state_data: rs_nfs_get_state_data, apply_tx_config: None, - flags: APP_LAYER_PARSER_OPT_UNIDIR_TXS, + flags: 0, truncate: None, get_frame_id_by_name: Some(NFSFrameType::ffi_id_from_name), get_frame_name_by_id: Some(NFSFrameType::ffi_name_from_id),