ukanth / afwall

AFWall+ (Android Firewall +) - iptables based firewall for Android
GNU General Public License v3.0
2.82k stars 454 forks source link

Add IPv6 support to NFLOG #1375

Closed NeroProtagonist closed 8 months ago

NeroProtagonist commented 8 months ago

As in title, Nflog can now decode and print IPv6 + TCP/UDP/ICMPv6 packets. Also updated all builds to use API 21 (latest available on NDK10).

Tested on Pixel 4a (arm architecture). Compiled binaries for the other platforms but can't test them.

NeroProtagonist commented 8 months ago

Fixes #1232

bsdice commented 7 months ago

After xz backdooring, uploading binaries to a repo is seriously bad practice, imho.

Why is the x86 binary 4k bigger and the others only bytes?

ukanth commented 7 months ago

After xz backdooring, uploading binaries to a repo is seriously bad practice, imho.

Why is the x86 binary 4k bigger and the others only bytes?

I usually compile all the binaries from source and bundle it before releasing it to public.

yashikada commented 1 month ago

Why is the x86 binary 4k bigger and the others only bytes?

this happens because the arm architecture is more optimized than the x86 one, there are fewer instructions to do the same thing. However you are absolutely right.

I usually compile all the binaries from source and bundle it

but this did not happen in this case. Are we sure that the author of this PR is reliable? Wouldn't it be to have all the binaries compiled with github actions?