fix acl not work with kcp&quic (#1152)

This commit is contained in:
Sijie.Sun
2025-07-26 14:38:10 +08:00
committed by GitHub
parent 5409c5bbe7
commit 354a4e1d7b
6 changed files with 380 additions and 24 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ impl AclFilter {
}
/// Get current processor for processing packets
fn get_processor(&self) -> Arc<AclProcessor> {
pub fn get_processor(&self) -> Arc<AclProcessor> {
self.acl_processor.load_full()
}
@@ -160,7 +160,7 @@ impl AclFilter {
}
/// Process ACL result and log if needed
fn handle_acl_result(
pub fn handle_acl_result(
&self,
result: &AclResult,
packet_info: &PacketInfo,