From f9ddc878c04a1f6fe6e78674de9a9bbc90908661 Mon Sep 17 00:00:00 2001 From: Vadim Dyadkin Date: Tue, 25 Mar 2025 13:58:35 +0100 Subject: [PATCH] Get back the "nft" method to the method choices, it was lost during the refactoring (commit 900acc3). Fixes #1037. Closes #1037. --- sshuttle/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshuttle/options.py b/sshuttle/options.py index ca49933..433abdf 100644 --- a/sshuttle/options.py +++ b/sshuttle/options.py @@ -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",