refactor: added error checking and various features

This commit is contained in:
empty_produce
2025-10-23 03:08:28 +01:00
parent 86fe544f98
commit 6c58fcb038
7 changed files with 475 additions and 191 deletions

View File

@@ -0,0 +1,11 @@
table inet mullvad_tailscale {
chain output {
type route hook output priority -100; policy accept;
ip daddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;
}
chain input {
type filter hook input priority -100; policy accept;
ip saddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65;
}
}