Skip to content

Tags: pion/turn

Tags

v4.1.3

Toggle v4.1.3's commit message

Verified

This commit was signed with the committer’s verified signature.
JoeTurki Joe Turki
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 (#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.

v4.0.2

Toggle v4.0.2's commit message
Lower priority of per-packet error message

The error message "Failed to handle datagram" is generated for
each received packet; it can therefore be used by an attacker to
fill the server's logs by sending a burst of incorrect packets.

Lower its priority to debug.

v4.0.1

Toggle v4.0.1's commit message
Avoid calling String() on nil turn address

v4.0.0

Toggle v4.0.0's commit message
Update module github.com/pion/stun/v3 to v3.0.0

v3.0.3

Toggle v3.0.3's commit message
Prevent heap allocations in FiveTuple Fingerprint

v2.1.6

Toggle v2.1.6's commit message

Verified

This commit was signed with the committer’s verified signature.
paulwe Paul Wells
Prevent heap allocations in FiveTuple Fingerprint

v3.0.2

Toggle v3.0.2's commit message
Support stand alone STUN server mode

Running in stand alone STUN server does not start
due to packet conn config requiring relay address config
during validation.

To enable that mode, bypass validation if relay address config
in packet conn config is nil.

Note that it is still validated in `ListenerConfig`.