Coverage Report

Created: 2026-06-30 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/suricata/rust/src/ntp/lua.rs
Line
Count
Source
1
/* Copyright (C) 2026 Open Information Security Foundation
2
 *
3
 * You can copy, redistribute or modify this Program under the terms of
4
 * the GNU General Public License version 2 as published by the Free
5
 * Software Foundation.
6
 *
7
 * This program is distributed in the hope that it will be useful,
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 * GNU General Public License for more details.
11
 *
12
 * You should have received a copy of the GNU General Public License
13
 * version 2 along with this program; if not, write to the Free Software
14
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15
 * 02110-1301, USA.
16
 */
17
18
use std::os::raw::c_int;
19
20
use super::ntp::NTPTransaction;
21
use crate::lua::*;
22
23
#[no_mangle]
24
0
pub extern "C" fn SCNtpLuaGetVersion(clua: &mut CLuaState, tx: &mut NTPTransaction) -> c_int {
25
0
    let lua = LuaState { lua: clua };
26
0
    lua.pushinteger(tx.version as i64);
27
0
    1
28
0
}
29
30
#[no_mangle]
31
0
pub extern "C" fn SCNtpLuaGetMode(clua: &mut CLuaState, tx: &mut NTPTransaction) -> c_int {
32
0
    let lua = LuaState { lua: clua };
33
0
    lua.pushinteger(tx.mode as i64);
34
0
    1
35
0
}
36
37
#[no_mangle]
38
0
pub extern "C" fn SCNtpLuaGetStratum(clua: &mut CLuaState, tx: &mut NTPTransaction) -> c_int {
39
0
    let lua = LuaState { lua: clua };
40
0
    lua.pushinteger(tx.stratum as i64);
41
0
    1
42
0
}
43
44
#[no_mangle]
45
0
pub extern "C" fn SCNtpLuaGetReferenceId(clua: &mut CLuaState, tx: &mut NTPTransaction) -> c_int {
46
0
    let lua = LuaState { lua: clua };
47
0
    lua.pushbytes(&tx.reference_id);
48
0
    1
49
0
}