Get back the "nft" method to the method choices, it was lost during the refactoring (commit 900acc3). Fixes #1037. Closes #1037.

This commit is contained in:
Vadim Dyadkin 2025-03-25 13:58:35 +01:00
parent 5942376090
commit f9ddc878c0

View File

@ -247,7 +247,7 @@ parser.add_argument(
if sys.platform == 'win32':
method_choices = ["auto", "windivert"]
else:
method_choices = ["auto", "nat", "tproxy", "pf", "ipfw"]
method_choices = ["auto", "nft", "nat", "tproxy", "pf", "ipfw"]
parser.add_argument(
"--method",