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

FIN flag count bug #167

Open
Paippi opened this issue Sep 24, 2024 · 0 comments
Open

FIN flag count bug #167

Paippi opened this issue Sep 24, 2024 · 0 comments

Comments

@Paippi
Copy link

Paippi commented Sep 24, 2024

Hey,

I noticed that in src/main/java/cic/cs/unb/ca/jnetpcap/FlowGenerator.java row 135, there's this line of code:

    					if ((flow.getBwdFINFlags() + flow.getBwdFINFlags()) == 2) {

I believe this should be

    					if ((flow.getFwdFINFlags() + flow.getBwdFINFlags()) == 2) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant