(ctx: &L7EvalContext, denied: bool, deny_group: &'static str)
| 578 | } |
| 579 | |
| 580 | fn emit_activity(ctx: &L7EvalContext, denied: bool, deny_group: &'static str) { |
| 581 | if let Some(tx) = &ctx.activity_tx { |
| 582 | let _ = try_record_activity(tx, denied, deny_group); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | /// Handle an upgraded connection (101 Switching Protocols). |
| 587 | /// |
no test coverage detected