Skip to content

Tags: wshlovercn/turn

Tags

v2.0.5

Toggle v2.0.5's commit message
Add RelayAddressGeneratorPortRange

New RelayAddressGenerator that only listens in a certain range

v2.0.4

Toggle v2.0.4's commit message
Update module stretchr/testify to v1.6.1

Generated by renovateBot

v2.0.3

Toggle v2.0.3's commit message
Transaction result blocking send

This fixes a race condition where a transaction result could attempt to
send on the result channel before it had a receiver (i.e. before
transaction.WaitForResult has been called), causing the caller to never
see the result. This was very likely to occur when when two peers and
the STUN/TURN server were on the same host.

v2.0.2

Toggle v2.0.2's commit message
Fix send on closed channel in Client

Protect concurrent run of
trMap.Find, trMap.CloseAndDeleteAll, and trMap.Delete.

v2.0.1

Toggle v2.0.1's commit message
Add dedicated TCP TURN Client

Also update .goreleaser binary names to be more
self documenting

Resolves pion#87

v2.0.0

Toggle v2.0.0's commit message
Release /v2

We may have issues still, but this contains all the
features we care about!

v1.4.0

Toggle v1.4.0's commit message
Add STUNConn. Wrapping net.Conn for TURN Clients

This allow us to use a net.Conn (like TCPConn) as the conn
for a TURN client.

Relates to pion#1

v1.3.7

Toggle v1.3.7's commit message
Fix incorrect warning

Resovles pion#97

v1.3.6

Toggle v1.3.6's commit message
Bump pion/stun

Go v1.13 compatibility

v1.3.5

Toggle v1.3.5's commit message
Removing outer locks around setLifetime

Removing the outer locks around the setLifetime call which
causes a deadlock as setLifetime wants the same lock.