debug
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alex 2023-04-20 14:29:38 +02:00
parent 48da5b61ac
commit d27173a2b7
1 changed files with 4 additions and 1 deletions

View File

@ -54,6 +54,7 @@ pub fn get_opened_ports(ipt: &iptables::IPTables) -> Result<messages::PublicExpo
let re = Regex::new(r"\-A.*? \-p (\w+).*\-\-dport (\d+).*?\-j ACCEPT")
.context("Regex matching open ports encountered an unexpected rule")?;
for i in list {
debug!("{} list DIPLONAT: got {}", ipt.cmd, i);
let caps = re.captures(&i);
match caps {
Some(c) => {
@ -70,7 +71,9 @@ pub fn get_opened_ports(ipt: &iptables::IPTables) -> Result<messages::PublicExpo
error!("Unexpected rule found in DIPLONAT chain")
}
}
_ => {}
_ => {
debug!("{} rule not parsed: {}", ipt.cmd, i);
}
}
}