// curl_easy_perform - Perform a file transfer func (curl *CURL) Perform() error { p := curl.handle return newCurlError(C.curl_easy_perform(p)) }
func (easy *Easy) Perform() error { return easy.getError(C.curl_easy_perform(easy.cptr)) }