Skip to content

Tags: jiangz222/turn

Tags

v2.0.8

Toggle v2.0.8's commit message
Fix lint

fix lint

v2.0.7

Toggle v2.0.7's commit message
Add CreatePermission method to TURN client

Allow clients to create Permissions without calling Write

v2.0.6

Toggle v2.0.6's commit message
Update CI configs to v0.6.4

Update lint scripts and CI configs.

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