diff options
Diffstat (limited to 'plugin/business')
| -rw-r--r-- | plugin/business/doh/src/doh.cpp | 5 | ||||
| -rw-r--r-- | plugin/business/tsg-http/src/tsg_http.cpp | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/plugin/business/doh/src/doh.cpp b/plugin/business/doh/src/doh.cpp index 17b55e0..dc91fcd 100644 --- a/plugin/business/doh/src/doh.cpp +++ b/plugin/business/doh/src/doh.cpp @@ -353,6 +353,11 @@ static void doh_maat_scan(const struct tfe_stream *stream, const struct tfe_http { hit_cnt += scan_ret; } + scan_ret = tfe_scan_zone(stream, result, ctx->scan_mid, hit_cnt); + if(scan_ret > 0) + { + hit_cnt += scan_ret; + } // scan qname scan_ret = maat_scan_string(g_doh_conf->maat, "TSG_OBJ_FQDN", "DOH_QNAME", qname, strlen(qname), diff --git a/plugin/business/tsg-http/src/tsg_http.cpp b/plugin/business/tsg-http/src/tsg_http.cpp index ab5de9f..d059355 100644 --- a/plugin/business/tsg-http/src/tsg_http.cpp +++ b/plugin/business/tsg-http/src/tsg_http.cpp @@ -3073,6 +3073,12 @@ void proxy_on_http_begin(const struct tfe_stream *stream, const struct tfe_http_ hit_cnt += scan_ret; } + scan_ret = tfe_scan_zone(stream, ctx->result, ctx->scan_mid, hit_cnt); + if(scan_ret > 0) + { + hit_cnt += scan_ret; + } + addr_tfe2sapp(stream->addr, &sapp_addr); if (sapp_addr.addrtype == ADDR_TYPE_IPV4) { |
