| 95 | } |
| 96 | |
| 97 | static int DoraXrtHttpIsRedirect(unsigned int statusCode) { |
| 98 | return statusCode == 301u || statusCode == 302u || statusCode == 303u || |
| 99 | statusCode == 307u || statusCode == 308u; |
| 100 | } |
| 101 | |
| 102 | static int DoraXrtHttpCopyResponse(const xhttpresponse* src, DoraXrtHttpResponse* dst) { |
| 103 | if (!dst) { |
no outgoing calls
no test coverage detected