Gabor Retvari
Gabor Retvari
Done (hopefully): rebased on pion/turn master and fixed the failing linter warnings. Could you please approve the CI workflow again to see if anything went wrong?
This really baffles me: the corresponding commit message is only a single line (`Fix linter warnings`). Any ideas? Happy to redo the commit if you know how to work around...
> But this might also be a sign, that the commits are too fine grained. Maybe we could combine all these commits in a single one with a more detailed...
On a related note: the fact that there is only a single readLoop per each net.PacketConn limits the max performance of UDP TURN listeners quite substantially, since there is a...
> Could you add //nolint:gocognit comment above the NewServer() function to silence the linter? Done. Fixed the linter warning on my side. > Also please squash the commits into a...
STUNner solves this exact problem with Kubernetes: https://github.com/l7mp/stunner
I'm afraid we need more info. Which client did you use? How did you specify the username/password on the client side? Did you try the example [server](https://github.com/pion/turn/tree/master/examples/turn-server/simple) and [client](https://github.com/pion/turn/tree/master/examples/turn-client/udp) code?...
Is your actual ICE server config something like this? ``` const configuration = { "iceServers": [{ urls: "turn:video.staging.robotmanager.com:3478", username: "my-username", password: "my-password" }] }; ``` ps: Please use proper markdown...
CC @stv0g
Are you sure you're not trying to connect to a test TURN server running on localhost? Can you please provide a step-by-step guide to reproduce this? I can try to...