diff options
| -rw-r--r-- | talpid-core/src/firewall/linux.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-core/src/firewall/linux.rs b/talpid-core/src/firewall/linux.rs index 1a047ec41e..32b6784f1b 100644 --- a/talpid-core/src/firewall/linux.rs +++ b/talpid-core/src/firewall/linux.rs @@ -88,7 +88,7 @@ enum End { } /// The Linux implementation for the firewall and DNS. -pub struct Firewall; +pub struct Firewall(()); struct FirewallTables { main: Table, @@ -100,7 +100,7 @@ impl FirewallT for Firewall { type Error = Error; fn new(_args: FirewallArguments) -> Result<Self> { - Ok(Firewall) + Ok(Firewall(())) } fn apply_policy(&mut self, policy: FirewallPolicy) -> Result<()> { |
