Skip to content

Tags: Zahgon/turn

Tags

v5.0.4

Toggle v5.0.4's commit message
Add Method field to RequestAttributes

Allows AuthHandler implementations to differentiate between Allocate,
Refresh, CreatePermission, and ChannelBind requests for custom auth
policies (e.g. applying TTL checks only on initial allocation).

v5.0.3

Toggle v5.0.3's commit message
Better bind error log

Include received error code in returned error

v5.0.2

Toggle v5.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
JoTurk Jo Turk
Only send requested-family for ipv6 allocations

v5.0.1

Toggle v5.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed channel number reuse, added server logs (pion#541)

Do not delete the client-side binding when a ChannelBind transaction
fails. This keeps the channel number stable for a peer even if
a response is lost, preventing "same peer, different channel" rebind
attempts.

Server already has channel-bind conflict detection implemented
and handled it silently. Added server warning logs in ChannelBind
handling to help discover and debug similar issues in the future.

v5.0.0

Toggle v5.0.0's commit message

Verified

This tag was signed with the committer’s verified signature.
adrianosela Adriano Sela Aviles
Relase v5.0.0

v4.1.4

Toggle v4.1.4's commit message

Verified

This commit was signed with the committer’s verified signature.
JoTurk Jo Turk
Upgrade to pion/transport/v4

v4.1.3

Toggle v4.1.3's commit message

Verified

This commit was signed with the committer’s verified signature.
JoTurk Jo Turk
Handle stale nonces in ChannelBind

And add timer to renew bindings

v4.1.2

Toggle v4.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Wrapped TURN errors (pion#480)

* Wrapped TURN Allocation/Permission errors

v4.1.1

Toggle v4.1.1's commit message
Fix lint issues with golangci-lint@v2

v4.1.0

Toggle v4.1.0's commit message
Add a quota handler callback

This PR adds a quota handler callback function which, if specified, is
called by the server just before making an allocation for a user. The
handler should return a single bool: if true then the allocation
request can proceed, otherwise the request is rejected with a 486
(Allocation Quota Reached) error.