Skip to content

Tags: pion/dtls

Tags

v3.0.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update docker.io/library/golang Docker tag to v1.24 (#694)

Generated by renovateBot

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v3.0.4

Update module golang.org/x/net to v0.30.0

Generated by renovateBot

v3.0.3

Fix incorrect client retransmissions

introduced by ec76652. If Client has gone to finished we know that
server sent Finished. No reason to ever re-send messages.

Resolves pion/webrtc#2909

v3.0.2

Fix race between Conn.Close and Conn.Handshake

v3.0.1

Fix multiple calls to Handshake

Handshake are synchronized by a mutex, but there is a panicing
scenario when the first handshake fails.

v3.0.0

Prepare /v3

Update go.mod and imports for /v3

v2.2.12

Mark NULL and AES256CM SRTP ciphers as supported

DTLS server checks this list during handshake. Without this change new
NULL and AES256CM SRTP ciphers were ignored.

v2.2.11

Verified

This tag was signed with the committer’s verified signature.
MarcoPolo Marco Munizaga
A patch release with two fixes:

- #627
- #628

v2.2.10

Update dependencies

github.com/pion/transport/v2 v2.2.1 => github.com/pion/transport/v2 v2.2.4
golang.org/x/crypto v0.8.0 => golang.org/x/crypto v0.18.0
golang.org/x/net v0.9.0 => golang.org/x/net v0.20.0

v2.2.9

Drop invalid record silently during handshake

Fix issue: invalid record in handshake staging cause readloop
exited then handshake failed.