John Jeffery
John Jeffery
I recently ran into an issue that this PR would resolve. I was using the popular github.com/gorilla/securecookie package. This package exports an `Error` type that implements the `causer` interface. (See...
Thanks for the reply @shurcooL. I'm keen to discuss and see if perhaps there is a better way to achieve what I am trying to do. Perhaps there is. Apologies...
Thanks for taking the time to consider this. You are absolutely correct in saying that our hypothetically modified `vfsgen` needs something additional in order to remember the computed hashes, file...
@alaska Good question.This would be a good scenario to write a unit test for.
Totally. This is a TODO. Pull request welcome.
If you want to connect to a server using SSL, you can initiate the connection yourself, and then setup the STOMP connection using the following function: ``` func Connect(conn io.ReadWriteCloser,...
To create an SSL connection, use the crypto/tls package. See http://golang.org/pkg/crypto/tls/#Dial for details of the function to use to create a connection. The tls.Conn that this function returns can then...
@alaska: Pull requests are very welcome.
To be honest, I'm not all that sure. I moved the code to the go-stomp project after the announcement of gopkg, but since that time I'm not sure that it...