diff options
| author | luwenpeng <[email protected]> | 2024-11-13 15:08:03 +0800 |
|---|---|---|
| committer | luwenpeng <[email protected]> | 2024-11-15 18:40:04 +0800 |
| commit | 2e69e0edd8d2574952fd5fe779f9604cb7ed6ead (patch) | |
| tree | 94b91e279ee807a6950ef98d6b527b2c850d3d59 /plugin/business | |
| parent | 595167dcf811fdb0c61f9d80df7fa0cd5cbe25e8 (diff) | |
TSG-23335 TFE适配AArch64架构v4.11.1-20241115
Diffstat (limited to 'plugin/business')
| -rw-r--r-- | plugin/business/doh/src/pub.cpp | 2 | ||||
| -rw-r--r-- | plugin/business/tsg-http/src/tsg_logger.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugin/business/doh/src/pub.cpp b/plugin/business/doh/src/pub.cpp index 36c98c5..f932067 100644 --- a/plugin/business/doh/src/pub.cpp +++ b/plugin/business/doh/src/pub.cpp @@ -3,7 +3,7 @@ static const char base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; -static const char index_64[128] = +static const signed char index_64[128] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, diff --git a/plugin/business/tsg-http/src/tsg_logger.cpp b/plugin/business/tsg-http/src/tsg_logger.cpp index 5511200..6a79ffb 100644 --- a/plugin/business/tsg-http/src/tsg_logger.cpp +++ b/plugin/business/tsg-http/src/tsg_logger.cpp @@ -43,13 +43,13 @@ enum _log_action #define get_time_ms(tv) ((long long)(tv.tv_sec) * 1000 + (long long)(tv.tv_usec) / 1000) -#include "uuid_v4.h" -UUIDv4::UUIDGenerator<std::mt19937_64> uuidGenerator; +// #include "uuid_v4.h" +// UUIDv4::UUIDGenerator<std::mt19937_64> uuidGenerator; void get_http_body_uuid(char *uuid) { - UUIDv4::UUID uid = uuidGenerator.getUUID(); - uid.str(uuid); + // UUIDv4::UUID uid = uuidGenerator.getUUID(); + // uid.str(uuid); return; } |
