diff options
| author | lijia <[email protected]> | 2024-03-20 17:11:39 +0800 |
|---|---|---|
| committer | lijia <[email protected]> | 2024-03-22 09:11:49 +0800 |
| commit | b0df6e0c2846300ac15673a19fc10ce5fd409153 (patch) | |
| tree | 239bee509e44769a9c026998dfabba3fce806d16 /src/HTTP_Message.c | |
| parent | 0ddf0cd934dd0ad9ec742790e6aeb4980bcdb64e (diff) | |
feat: obsolete libdocanalyze, use zlib to decompress http payload.v2.1.1obsolete-docanalyze-use-zlib
Diffstat (limited to 'src/HTTP_Message.c')
| -rw-r--r-- | src/HTTP_Message.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/HTTP_Message.c b/src/HTTP_Message.c index 41ce708..d85b962 100644 --- a/src/HTTP_Message.c +++ b/src/HTTP_Message.c @@ -363,13 +363,13 @@ int HTTP_INIT(void) return -1; } - /*ungzip init*/ - g_http_prog_para.docanly_handler = docanalyze_initialize(g_iThreadNum); - if(NULL==g_http_prog_para.docanly_handler) - { - MESA_handle_runtime_log(g_http_prog_para.http_log_handle, RLOG_LV_FATAL, HTTP_PLUGIN_NAME, "docanalyze_initialize error!"); - return -1; - } + /*ungzip init*/ + // g_http_prog_para.docanly_handler = docanalyze_initialize(g_iThreadNum); + // if(NULL==g_http_prog_para.docanly_handler) + // { + // MESA_handle_runtime_log(g_http_prog_para.http_log_handle, RLOG_LV_FATAL, HTTP_PLUGIN_NAME, "docanalyze_initialize error!"); + // return -1; + // } int i=0; g_http_prog_para.unzip_content=(fold_infor_t *)malloc(sizeof(fold_infor_t)*g_iThreadNum); @@ -568,7 +568,7 @@ void HTTP_DESTROY(void) MESA_destroy_runtime_log_handle(g_http_prog_para.http_log_handle); /*ungzip*/ - docanalyze_destroy(g_http_prog_para.docanly_handler); + // docanalyze_destroy(g_http_prog_para.docanly_handler); /*unzip_content*/ int i=0; |
