This commit is contained in:
yihaoDeng 2022-07-27 08:42:08 +08:00
parent ca9f129b52
commit ea2c6f6805
1 changed files with 5 additions and 3 deletions

View File

@ -17,10 +17,11 @@
#ifdef USE_UV #ifdef USE_UV
#include <uv.h> #include <uv.h>
#endif #endif
#include "taoserror.h" // clang-format off
#include "thttp.h"
#include "tlog.h"
#include "zlib.h" #include "zlib.h"
#include "thttp.h"
#include "taoserror.h"
#include "tlog.h"
static int32_t taosBuildHttpHeader(const char* server, int32_t contLen, char* pHead, int32_t headLen, static int32_t taosBuildHttpHeader(const char* server, int32_t contLen, char* pHead, int32_t headLen,
EHttpCompFlag flag) { EHttpCompFlag flag) {
@ -231,4 +232,5 @@ SEND_OVER:
return code; return code;
} }
// clang-format on
#endif #endif