diff options
| author | tongzongzhen <[email protected]> | 2024-05-28 15:26:56 +0800 |
|---|---|---|
| committer | tongzongzhen <[email protected]> | 2024-05-28 15:26:56 +0800 |
| commit | 69586f49f2d37fe61ba68e1c2f67077433afc41d (patch) | |
| tree | c2486705f739e51f33974921341b2627a765f876 /src/config.c | |
| parent | b0b1777a1032a11ad227ee04ca1f96eb2046821d (diff) | |
add debug option for invalid traffic link id
Diffstat (limited to 'src/config.c')
| -rw-r--r-- | src/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index d3a4ef3..0cac3e4 100644 --- a/src/config.c +++ b/src/config.c @@ -124,6 +124,8 @@ void config_load() MESA_load_profile_int_def(config_path, "maat", "maat_redis_db_index", &(g_conf->redis_db_idx), 0); MESA_load_profile_uint_def(config_path, "debug", "send_ctrlbuf", &g_conf->send_ctrlbuf, 0); + MESA_load_profile_uint_def(config_path, "debug", "send_invalid_traffic_link_id", + &g_conf->send_invalid_traffic_link_id, 0); MESA_load_profile_uint_def(config_path, "debug", "kafka_dump_to_log", &(g_conf->kafka_dump_to_log), 0); MESA_load_profile_uint_def(config_path, "debug", "arp_pkt_has_ip_test", &(g_conf->arp_pkt_has_ip_test), 0); } |
