SetVerdict emits a veredict on a packet
(v Verdict)
| 34 | |
| 35 | // SetVerdict emits a veredict on a packet |
| 36 | func (p *Packet) SetVerdict(v Verdict) { |
| 37 | p.verdictChannel <- VerdictContainer{Verdict: v, Packet: nil, Mark: 0} |
| 38 | } |
| 39 | |
| 40 | // SetVerdictAndMark emits a veredict on a packet and marks it in order to not |
| 41 | // analyze it again. |
no outgoing calls
no test coverage detected