[go-nuts] Writing to multiple addresses using net.UDPConn

2018-01-11 Thread Adam Medziński
How should I create a net.UDPConn struct so I will be able to use WriteTo/WriteToUDP functions with different addresses? Connection created with net.DialUDP will not be right as it is in “connected” state and writing to it with different addresses fails. -- You received this message because yo

[go-nuts] Writing to multiple addresses using net.UDPConn

2018-01-11 Thread Adam Medziński
How should I create a net.UDPConn structure so I will be able to use WriteTo/WriteToUDP functions with different addresses? Connection created with net.DialUDP will not be right as it is in “connected” state and writing will fail. -- You received this message because you are subscribed to the

Re: [go-nuts] Set a SAN otherName using `x509.CertificateRequest`

2017-04-25 Thread Adam Medziński
see how to put it there. > > > Janne Snabb > sn...@epipe.com > > On 2017-04-24 18:28, Adam Medziński wrote: > > Is it possible to set a SAN otherName in x509.CertificateRequest > > <https://golang.org/pkg/crypto/x509/#CertificateRequest> str

[go-nuts] Set a SAN otherName using `x509.CertificateRequest`

2017-04-24 Thread Adam Medziński
Is it possible to set a SAN otherName in x509.CertificateRequest structure, so it will be present in the DER encoded output of x509.CreateCertificateRequest ? -- You received