func EasyInit() (easy *Easy, err *CurlError) { easy = new(Easy) if easy.cptr = C.curl_easy_init(); easy.cptr == nil { return nil, NewError(E_FAILED_INIT) } easy.cerrbuf = (*C.char)(C.malloc(C.CURL_ERROR_SIZE)) err = NewError(C.my_esetoptc(easy.cptr, C.CURLOPT_ERRORBUFFER, easy.cerrbuf)) if err != nil { C.curl_easy_cleanup(easy.cptr) return nil, err } runtime.SetFinalizer(easy, func(e *Easy) { e.Cleanup() }) return }
// curl_easy_init - Start a libcurl easy session func EasyInit() *CURL { p := C.curl_easy_init() return &CURL{handle: p, mallocAllocs: make([]*C.char, 0)} // other field defaults to nil }
// curl_easy_init - Start a libcurl easy session func EasyInit() *CURL { p := C.curl_easy_init() c := &CURL{handle: p, mallocAllocs: make([]*C.char, 0)} // other field defaults to nil context_map.Set(uintptr(p), c) return c }
// curl_easy_init - Start a libcurl easy session func EasyInit() *CURL { p := C.curl_easy_init() return &CURL{handle: p} // other field defaults to nil }