summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryangwei <[email protected]>2024-08-28 19:58:28 +0800
committeryangwei <[email protected]>2024-08-28 19:58:28 +0800
commitb2647a5a75f3965b53645a66944e21744b0ff3de (patch)
treea7283ea367b9f61ac8c68ebc0db9361bb79c8d6a /test
parent283d591e6b8dd460d19295519100472b78d3510a (diff)
🦄 refactor(plugin_manager): refactor intrinsic topic name
Diffstat (limited to 'test')
-rw-r--r--test/debug_plugin/debug_plugin.c4
-rw-r--r--test/glimpse_detector/gtest_glimpse_detector_plugin.cpp4
-rw-r--r--test/packet_inject/packet_inject.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/test/debug_plugin/debug_plugin.c b/test/debug_plugin/debug_plugin.c
index 5456b57..951eea6 100644
--- a/test/debug_plugin/debug_plugin.c
+++ b/test/debug_plugin/debug_plugin.c
@@ -271,8 +271,8 @@ void *debug_plugin_init(struct stellar *st)
ctx->st = st;
ctx->sess_exdata_idx = stellar_exdata_new_index(st, "DEBUG_PLUGIN_SESS_EXDATA", stellar_exdata_free_default, NULL);
ctx->sess_plug_id = stellar_session_plugin_register(st, on_sess_new, on_sess_free, ctx);
- ctx->udp_topic_id = stellar_mq_get_topic_id(st, TOPIC_UDP);
- ctx->tcp_topic_id = stellar_mq_get_topic_id(st, TOPIC_TCP);
+ ctx->udp_topic_id = stellar_mq_get_topic_id(st, TOPIC_UDP_INPUT);
+ ctx->tcp_topic_id = stellar_mq_get_topic_id(st, TOPIC_TCP_INPUT);
ctx->tcp_stream_topic_id = stellar_mq_get_topic_id(st, TOPIC_TCP_STREAM);
stellar_session_mq_subscribe(st, ctx->udp_topic_id, on_sess_udp_msg, ctx->sess_plug_id);
diff --git a/test/glimpse_detector/gtest_glimpse_detector_plugin.cpp b/test/glimpse_detector/gtest_glimpse_detector_plugin.cpp
index e28c14e..4677630 100644
--- a/test/glimpse_detector/gtest_glimpse_detector_plugin.cpp
+++ b/test/glimpse_detector/gtest_glimpse_detector_plugin.cpp
@@ -167,8 +167,8 @@ extern "C" void *GLIMPSE_DETECTOR_TEST_PLUG_LOAD(struct stellar *st)
exit(-1);
}
- int tcp_topic_id=stellar_mq_get_topic_id(st, TOPIC_TCP);
- int udp_topic_id=stellar_mq_get_topic_id(st, TOPIC_UDP);
+ int tcp_topic_id=stellar_mq_get_topic_id(st, TOPIC_TCP_INPUT);
+ int udp_topic_id=stellar_mq_get_topic_id(st, TOPIC_UDP_INPUT);
if(tcp_topic_id < 0 || udp_topic_id < 0)
{
perror("GLIMPSE_DETECTOR_TEST get tcp or udp topic id failed\n");
diff --git a/test/packet_inject/packet_inject.c b/test/packet_inject/packet_inject.c
index 8b20f7f..6a24311 100644
--- a/test/packet_inject/packet_inject.c
+++ b/test/packet_inject/packet_inject.c
@@ -557,8 +557,8 @@ void *packet_inject_init(struct stellar *st)
print_config(ctx->logger, &ctx->config);
ctx->sess_plug_id = stellar_session_plugin_register(st, on_sess_new, on_sess_free, ctx);
- ctx->tcp_topic_id = stellar_mq_get_topic_id(st, TOPIC_TCP);
- ctx->udp_topic_id = stellar_mq_get_topic_id(st, TOPIC_UDP);
+ ctx->tcp_topic_id = stellar_mq_get_topic_id(st, TOPIC_TCP_INPUT);
+ ctx->udp_topic_id = stellar_mq_get_topic_id(st, TOPIC_UDP_OUTPUT);
stellar_session_mq_subscribe(st, ctx->tcp_topic_id, on_sess_msg, ctx->sess_plug_id);
stellar_session_mq_subscribe(st, ctx->udp_topic_id, on_sess_msg, ctx->sess_plug_id);