• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

OISF / suricata / 22618661228

02 Mar 2026 09:33PM UTC coverage: 42.258% (-34.4%) from 76.611%
22618661228

push

github

victorjulien
github-actions: bump actions/download-artifact from 7.0.0 to 8.0.0

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7.0.0 to 8.0.0.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/37930b1c2...70fc10c6e)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

91511 of 216553 relevant lines covered (42.26%)

3416852.41 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

85.71
/src/detect-engine-uint.h
1
/* Copyright (C) 2020 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
/**
19
 * \file
20
 *
21
 * \author Philippe Antoine <p.antoine@catenacyber.fr>
22
 */
23

24
#ifndef SURICATA_DETECT_ENGINE_UINT_H
25
#define SURICATA_DETECT_ENGINE_UINT_H
26

27
#include "rust.h"
28
#include "detect-engine-prefilter-common.h"
29

30
// These definitions are kept to minimize the diff
31
// We can run a big sed commit next
32
#define DETECT_UINT_GT  DetectUintModeGt
2,165✔
33
#define DETECT_UINT_GTE DetectUintModeGte
574✔
34
#define DETECT_UINT_RA  DetectUintModeRange
1,804✔
35
#define DETECT_UINT_EQ  DetectUintModeEqual
13,096✔
36
#define DETECT_UINT_NE  DetectUintModeNe
33,993✔
37
#define DETECT_UINT_LT  DetectUintModeLt
685✔
38
#define DETECT_UINT_LTE DetectUintModeLte
×
39

40
typedef DetectUintData_u64 DetectU64Data;
41
typedef DetectUintData_u32 DetectU32Data;
42
typedef DetectUintData_u16 DetectU16Data;
43
typedef DetectUintData_u8 DetectU8Data;
44

45
int DetectU64Match(const uint64_t parg, const DetectUintData_u64 *du64);
46
DetectUintData_u64 *DetectU64Parse(const char *u64str);
47

48
int DetectU32Match(const uint32_t parg, const DetectUintData_u32 *du32);
49
DetectUintData_u32 *DetectU32Parse(const char *u32str);
50
void PrefilterPacketU32Set(PrefilterPacketHeaderValue *v, void *smctx);
51
bool PrefilterPacketU32Compare(PrefilterPacketHeaderValue v, void *smctx);
52

53
int DetectU8Match(const uint8_t parg, const DetectUintData_u8 *du8);
54
DetectUintData_u8 *DetectU8Parse(const char *u8str);
55
void PrefilterPacketU8Set(PrefilterPacketHeaderValue *v, void *smctx);
56
bool PrefilterPacketU8Compare(PrefilterPacketHeaderValue v, void *smctx);
57

58
int DetectU16Match(const uint16_t parg, const DetectUintData_u16 *du16);
59
DetectUintData_u16 *DetectU16Parse(const char *u16str);
60
void PrefilterPacketU16Set(PrefilterPacketHeaderValue *v, void *smctx);
61
bool PrefilterPacketU16Compare(PrefilterPacketHeaderValue v, void *smctx);
62

63
#endif /* SURICATA_DETECT_ENGINE_UINT_H */
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc