去掉r0的hook,增加IP屏蔽记录

This commit is contained in:
huoji
2023-11-17 04:06:33 +08:00
parent 49904f5cb5
commit 6bac06d28a
41 changed files with 270150 additions and 48 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include "../head.h"
struct client_msg_t;
struct kernel_msg_t;
enum class _msg_type;
namespace client_msg {
extern auto call_driver(client_msg_t msg) -> bool;
} // namespace client_msg
namespace network_event {
auto on_event(_msg_type type, kernel_msg_t msg) -> void;
};