Implementation of curl_message constructor.
| 141 | |
| 142 | // Implementation of curl_message constructor. |
| 143 | curl_multi::curl_message::curl_message(const CURLMsg *msg, const curl_easy *handler) : |
| 144 | message(msg->msg), whatever(msg->data.whatever), code(msg->data.result), handler(handler) { |
| 145 | |
| 146 | // ... nothing to do here ... |
| 147 | } |
| 148 | |
| 149 | // Implementation of get_curl method. |
| 150 | CURLM *curl_multi::get_curl() const { |
nothing calls this directly
no outgoing calls
no test coverage detected