Whether any protocol bypasses L7 inspection.
(&self)
| 124 | impl BinaryCapability { |
| 125 | /// Whether any protocol bypasses L7 inspection. |
| 126 | pub fn bypasses_l7(&self) -> bool { |
| 127 | self.protocols.iter().any(|p| p.bypasses_l7) |
| 128 | } |
| 129 | |
| 130 | /// Whether the binary can perform write actions. |
| 131 | pub fn can_write(&self) -> bool { |
no outgoing calls
no test coverage detected