コード例 #1
0
ファイル: easy.go プロジェクト: ym/go-curl
// curl_easy_perform - Perform a file transfer
func (curl *CURL) Perform() error {
	p := curl.handle
	return newCurlError(C.curl_easy_perform(p))
}
コード例 #2
0
ファイル: easy.go プロジェクト: edmonds/golang-curl
func (easy *Easy) Perform() error {
	return easy.getError(C.curl_easy_perform(easy.cptr))
}