Page MenuHomeFreeBSD

libalias unused var fix proposal
Needs ReviewPublic

Authored by devnexen_gmail.com on Dec 23 2021, 10:10 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 10, 9:05 AM
Unknown Object (File)
Wed, May 8, 7:36 AM
Unknown Object (File)
Wed, May 8, 7:36 AM
Unknown Object (File)
Wed, May 8, 4:45 AM
Unknown Object (File)
Apr 16 2024, 5:09 AM
Unknown Object (File)
Apr 16 2024, 2:55 AM
Unknown Object (File)
Feb 22 2024, 8:40 AM
Unknown Object (File)
Dec 20 2023, 4:53 AM

Details

Reviewers
sobomax
donner
Summary

reusing find_handler return for UDP/TCP

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Only alias_nbt.c may return any negative result. Even if no handler is suitable, the returned value from alias_mod.c would be positive (2). Every other handler always returns zero.

So the question is, what's the result of passing through a packet which can't be handled by a special purpose handler? Is it better to send out the packet with the un-natted original IP addresses or should be packet be processed without any internal inspection? Is PKT_ALIAS_ERROR more appropriate?