mirror of
https://github.com/h3xduck/TripleCross.git
synced 2025-12-18 15:53:08 +08:00
13 lines
225 B
C
13 lines
225 B
C
|
|
#include "module_manager.h"
|
||
|
|
|
||
|
|
module_config_t module_config = {
|
||
|
|
.xdp_module = {
|
||
|
|
.all = ON,
|
||
|
|
.xdp_receive = ON
|
||
|
|
},
|
||
|
|
.sched_module = {
|
||
|
|
.all = ON,
|
||
|
|
.handle_sched_process_exec = ON
|
||
|
|
}
|
||
|
|
};
|