Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

userguide: fix explanation about bsize ranges - v2 #10250

Closed
wants to merge 1 commit into from

Conversation

jufajardini
Copy link
Contributor

Our code handles Uint ranges as exclusive, but for bsize, our documentation stated that they're inclusive.

Cf. from uint.rs:

DetectUintMode::DetectUintModeRange => {
    if val > x.arg1 && val < x.arg2 {
        return true;
    }
}

Task #6708

Link to redmine ticket:
https://redmine.openinfosecfoundation.org/issues/6708

Previous PR: #10235

Describe changes:

  • Rebased, new PR to get green CI runs

Our code handles Uint ranges as exclusive, but for bsize, our
documentation stated that they're inclusive.

Cf. from uint.rs:

    DetectUintMode::DetectUintModeRange => {
        if val > x.arg1 && val < x.arg2 {
            return true;
        }
    }

Task OISF#6708
@jufajardini jufajardini added the typo/doc update No code change : only doc or typo fixes label Jan 25, 2024
@victorjulien victorjulien added this to the 8.0 milestone Jan 30, 2024
@victorjulien
Copy link
Member

Merged in #10277, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
typo/doc update No code change : only doc or typo fixes
2 participants