Skip to content

golang curl(libcurl) binding with MIPS support.

License

Notifications You must be signed in to change notification settings

rao-subba-venkata/go-curl

This branch is 4 commits ahead of, 14 commits behind andelf/go-curl:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8f8c5fb · Dec 12, 2023
Jun 30, 2020
Mar 13, 2018
Oct 8, 2011
Mar 13, 2018
Jan 19, 2020
Jan 19, 2020
Jan 6, 2016
Feb 19, 2016
Dec 12, 2023
Mar 7, 2013
Mar 13, 2018
Jun 30, 2020
Mar 13, 2018
Dec 12, 2023
Feb 21, 2016
Dec 12, 2023
Mar 3, 2016
Apr 25, 2013
Apr 25, 2013
Dec 22, 2016
Mar 7, 2013

Repository files navigation

go-curl

Build Status

my golang libcurl(curl) binding.

See more examples in ./examples/ directory~!

LICENSE

go-curl is licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).

Current Development Status

  • currently stable
  • READ, WRITE, HEADER, PROGRESS function callback
  • a Multipart Form supports file uploading
  • Most curl_easy_setopt option
  • partly implement share & multi interface
  • new callback function prototype

How to Install

Make Sure You Have libcurl (and its develop headers, static/dynamic libs) installed!

$ go get -u github.com/andelf/go-curl

Current Status

  • Linux x64
    • passed go1 (ArchLinux)
  • Windows x86
    • passed go1 (win7, mingw-gcc 4.5.2, curl 7.22.0)
  • Mac OS
    • passed go1 (Mac OS X 10.7.3, curl 7.21.4)

Sample Program

package main

import (
    "fmt"
    curl "github.com/andelf/go-curl"
)

func main() {
    easy := curl.EasyInit()
    defer easy.Cleanup()

    easy.Setopt(curl.OPT_URL, "http://www.baidu.com/")

    // make a callback function
    fooTest := func (buf []byte, userdata interface{}) bool {
        println("DEBUG: size=>", len(buf))
        println("DEBUG: content=>", string(buf))
        return true
    }

    easy.Setopt(curl.OPT_WRITEFUNCTION, fooTest)

    if err := easy.Perform(); err != nil {
        fmt.Printf("ERROR: %v\n", err)
    }
}

About

golang curl(libcurl) binding with MIPS support.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 67.8%
  • C 25.3%
  • Python 6.9%