Gordon Klaus

Results 34 comments of Gordon Klaus

I can see how this would be useful if you don't have control over which version you're running. Maybe in the meantime you can depend on a specific version? `go...

I don't have any experience cross compiling portaudio-go. But I suspect your problem is related to the pkg-config configuration for PortAudio -- I suppose that is where `-framework x4` is...

I ran into what I think is this same issue. The problem was that my `feof` function had (what I understand to be) ISO C rather than ANSI C semantics;...

That's right. It's a hard reset, i.e., the client doesn't get a chance to send a CloseNotify alert. I've enabled logging in the server and it reports `discarded duplicated packet...

This issue is a blocker for my project. I imagine it is relevant for others, as well. An unsatisfactory workaround is to close the server after a timeout has expired....

I'd like to get a confirmation of whether or not this feature would be accepted into the package before I put any work into implementing it. Can you give some...

I did a little research and found that OpenSSL [does not](https://github.com/openssl/openssl/issues/3283) support this and Mbed TLS [does](https://github.com/ARMmbed/mbedtls/issues/204). Also from reading the discussions there I realized that a much easier workaround...

Indeed, using an ephemeral source port worked for me. Why didn't I think of that before? 😆 I leave it up to you guys whether this is something you want.

Hi @rtechencheng . You can read about ephemeral ports [here](https://en.wikipedia.org/wiki/Ephemeral_port). To obtain an ephemeral source port, you can either specify the port of the local address to be zero when...

@rtechencheng The server doesn't have to do anything special. An ephemeral port is just like any other port; it's just that the port number is chosen randomly.