diff options
author | darkgallium <florian+git@aloneinthedark.xyz> | 2020-06-28 17:01:12 +0200 |
---|---|---|
committer | darkgallium <florian+git@aloneinthedark.xyz> | 2020-06-28 17:01:12 +0200 |
commit | 6fe86469ee9b74a8cf628ff21513a8f298a6b4b6 (patch) | |
tree | f3d41ec7addfaad1ee9effb9c3495f9c5acac2dd /src | |
parent | d2ae084fc1be2671c2a301e689c8632576922785 (diff) | |
download | diplonat-6fe86469ee9b74a8cf628ff21513a8f298a6b4b6.tar.gz diplonat-6fe86469ee9b74a8cf628ff21513a8f298a6b4b6.zip |
update README & Dockerfile
Diffstat (limited to 'src')
-rw-r--r-- | src/fw.rs | 12 | ||||
-rw-r--r-- | src/fw_actor.rs | 1 |
2 files changed, 1 insertions, 12 deletions
@@ -73,15 +73,3 @@ pub fn cleanup(ipt: &iptables::IPTables) -> Result<(), FirewallError> { Ok(()) } -/* -fn main() { - let ipt = iptables::new(false).unwrap(); - setup(&ipt); - - let mut test: HashSet<Port> = HashSet::new(); - test.insert(Port { proto: String::from("tcp"), number: 443 }); - let a = get_opened_ports(&ipt); - let l = test.difference(&a).collect::<Vec<&Port>>(); - println!("{:?}", l); -} -*/ diff --git a/src/fw_actor.rs b/src/fw_actor.rs index 9bc6610..0ef08eb 100644 --- a/src/fw_actor.rs +++ b/src/fw_actor.rs @@ -78,3 +78,4 @@ impl FirewallActor { } } + |