diff options
| author | “pengxuanzheng” <[email protected]> | 2022-01-20 06:39:23 +0000 |
|---|---|---|
| committer | “pengxuanzheng” <[email protected]> | 2022-01-20 06:39:23 +0000 |
| commit | fb800c9bb9f0d25e0ae8026c1b3b7ee6c4996d9c (patch) | |
| tree | d53e996c541df12a147d72b4d3cad7780759c756 | |
| parent | e92fd7c9df8db4e50b73c0015688c7d82586dacd (diff) | |
🐞 fix(TSG-9466): 命中monitor时,先notify命中monitor结果,然后再发送日志v4.0.1
| -rw-r--r-- | .gitignore | 17 | ||||
| -rw-r--r-- | src/fw_dns_plug.cpp | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..127aad1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +SI/ +*.log +*.o +*.so +*.si4project/ +*.a +*.d +build/ +.vscode +.idea +core.* +cmake-build-* +GPATH +GTAGS +GRTAGS +src/tags +version.txt
\ No newline at end of file diff --git a/src/fw_dns_plug.cpp b/src/fw_dns_plug.cpp index d78a93f..f3a2f23 100644 --- a/src/fw_dns_plug.cpp +++ b/src/fw_dns_plug.cpp @@ -242,8 +242,8 @@ extern "C" char FW_DNS_PLUG_ENTRY(stSessionInfo* session_info, void **pme, int } else { - fw_dns_send_log(a_stream, dns_info, result, hit_num, thread_seq); tsg_notify_hited_monitor_result(a_stream, result, hit_num, thread_seq); + fw_dns_send_log(a_stream, dns_info, result, hit_num, thread_seq); } } |
