Re: [go-nuts] Re: Tried to create a Varnish VMOD in go, but got "undefined reference" link errors

2016-11-16 Thread Hiroaki Nakamura
No, I haven't. Actually I haven't use Varnish since then and have not try this further. 2016-11-11 6:06 GMT+09:00 : > Did you find a way to get this to work? > > > On Saturday, October 24, 2015 at 9:09:51 PM UTC-4, Hiroaki Nakamura wrote: >> >> Hi. >&

Re: [go-nuts] [ANN] go-scp: a scp client library in go

2016-09-20 Thread Hiroaki Nakamura
es that make sense? Yes, thank you for your explanation! I'll try to implement it in my spare time. Thanks Hiroaki Nakamura > > -Paul > > On Tue, Sep 20, 2016 at 3:36 PM, Hiroaki Nakamura > wrote: >> >> 2016-09-21 0:59 GMT+09:00 Paul Borman : >> > I woul

Re: [go-nuts] [ANN] go-scp: a scp client library in go

2016-09-20 Thread Hiroaki Nakamura
ur/go-scp/commit/b43795fc10ef52b02a76653b643fa5aabb7b85a7 One thing I would like to add is the cancellation support using context.Context. However ssh.Run does not take a context.Context as an argument, so I don't know how to achieve that. https://godoc.org/golang.org/x/crypto/ssh#Session.Run Co

Re: [go-nuts] [ANN] go-scp: a scp client library in go

2016-09-20 Thread Hiroaki Nakamura
o use, I'm glad to export them. Do you have an idea about such structs, functions or interfaces? Thanks! Hiroaki Nakamura > > On Fri, Sep 16, 2016 at 9:41 AM, Hiroaki Nakamura > wrote: >> >> Hi all, >> >> I noticed the golang.org/x/crypto/ssh package exists,

[go-nuts] [ANN] go-scp: a scp client library in go

2016-09-16 Thread Hiroaki Nakamura
high level functions which are supposed to be easy to use. https://godoc.org/github.com/hnakamur/go-scp However I wonder if there APIs can be improved. For example, better function names and better arguments. Could you tell me what you think? Thanks! Hiroaki Nakamura -- You received this message

Re: [go-nuts] Re: go1.7beta2 prints "too many values in struct initializer" when I ran "go test" for gopkg.in/vmihailenco/msgpack.v2

2016-06-18 Thread Hiroaki Nakamura
turday, 18 June 2016 12:02:03 UTC+10, Hiroaki Nakamura wrote: >> >> Hi, >> >> Here are commands I used to set up gopkg.in/vmihailenco/msgpack.v2 >> >> go get -u gopkg.in/vmihailenco/msgpack.v2 >> cd $GOPATH/src/gopkg.in/vmihailenco/msgpack.v2 >> go get

[go-nuts] go1.7beta2 prints "too many values in struct initializer" when I ran "go test" for gopkg.in/vmihailenco/msgpack.v2

2016-06-17 Thread Hiroaki Nakamura
Hi, Here are commands I used to set up gopkg.in/vmihailenco/msgpack.v2 go get -u gopkg.in/vmihailenco/msgpack.v2 cd $GOPATH/src/gopkg.in/vmihailenco/msgpack.v2 go get -u github.com/ugorji/go-msgpack go get -u github.com/ugorji/go/codec go get -u gopkg.in/check.v1 And I tried to run tests and go