Increase verbosity, add comments

This commit is contained in:
Raskaro
2019-08-21 14:19:02 +02:00
parent 984a06cb8f
commit a560f52b42
2 changed files with 4 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ func RunInspectors(pkt packet.Packet, link *network.Link) (network.Verdict, bool
continue
}
action := inspectors[key](pkt, link)
action := inspectors[key](pkt, link) // Actually run inspector
switch action {
case DO_NOTHING:
if verdict < network.VerdictAccept {