| 247 | } |
| 248 | |
| 249 | static bool isValidRedirectMode(SC::HttpClientRequestRedirectOptions::Mode mode) |
| 250 | { |
| 251 | switch (mode) |
| 252 | { |
| 253 | case SC::HttpClientRequestRedirectOptions::NoRedirects: |
| 254 | case SC::HttpClientRequestRedirectOptions::FollowGetHead: |
| 255 | case SC::HttpClientRequestRedirectOptions::FollowAll: return true; |
| 256 | } |
| 257 | return false; |
| 258 | } |
| 259 | |
| 260 | static bool isValidProxyMode(SC::HttpClientRequestProxyOptions::Mode mode) |
| 261 | { |
no outgoing calls
no test coverage detected