| 231 | } |
| 232 | |
| 233 | const char *utils::GetGlobalProxy() |
| 234 | { |
| 235 | if (s_globalProxy.empty()) |
| 236 | { |
| 237 | return NULL; |
| 238 | } |
| 239 | |
| 240 | return s_globalProxy.c_str(); |
| 241 | } |
| 242 | |
| 243 | bool utils::DoGETRequest(const char *url, void **ppRespBuf, size_t *pRespBufSize, const char **ppHeaders, uint32_t headerNum, |
| 244 | int32_t *pRespCode, void*(*liballoc)(size_t), void(*libdealloc)(void *), void*(*librealloc)(void *, size_t)) |
nothing calls this directly
no outgoing calls
no test coverage detected