| 219 | } |
| 220 | |
| 221 | void utils::SetGlobalProxy(const char *proxy) |
| 222 | { |
| 223 | if (!proxy) |
| 224 | { |
| 225 | s_globalProxy.clear(); |
| 226 | } |
| 227 | else |
| 228 | { |
| 229 | s_globalProxy = proxy; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | const char *utils::GetGlobalProxy() |
| 234 | { |
nothing calls this directly
no outgoing calls
no test coverage detected