Skip to content

Tags: pion/mdns

Tags

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
JoTurk Jo Turk
Include original question in answer

Some mDNS clients (especially on Android) require the question
to be echoed in the answer in order to properly recognise
and process the response.
This change ensures the question is sent back
alongside the answer.

Co-authored-by: atomirex <nige@atomirex.com>

v2.0.7

Toggle v2.0.7's commit message
Fix ifcIndex usage in Windows

We were not doing the ifcIndex check correctly which is a bug
everywhere but only shows on Windows right now due to not seeing
Control Messages.

v2.0.6

Toggle v2.0.6's commit message
Prefer IPv6 over IPv4-in-IPv6

v2.0.5

Toggle v2.0.5's commit message
Improve IPv6 support

This adds Server.QueryAddr for netip.Addr support

v2.0.4

Toggle v2.0.4's commit message
Fix incorrect slice addressing

Slice was being filtered but the loop counter wasn't being modified

```
panic: runtime error: index out of range [1] with length 1

goroutine 8 [running]:
        /Users/sean/go/src/github.com/pion/mdns/conn.go:965 +0xb9c
        /Users/sean/go/src/github.com/pion/mdns/conn.go:976 +0x1e4
        /Users/sean/go/src/github.com/pion/mdns/conn.go:1018 +0x90
        /Users/sean/go/src/github.com/pion/mdns/conn.go:1013 +0x234
```

v2.0.3

Toggle v2.0.3's commit message
Remove multierr dependency

Keeps the package at 0 dependencies

v2.0.2

Toggle v2.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
edaniels Eric Daniels
Relax isSupportedIPv6 to just no mapped

v2.0.1

Toggle v2.0.1's commit message
Support dig based unicast requests

e.g. dig -p 5353 @224.0.0.251 pion-test.local

v2.0.0

Toggle v2.0.0's commit message
Support IPv6 question and response

- Addresses #69

v0.0.12

Toggle v0.0.12's commit message
Use loopback address in responses when configured

Fixes pion/webrtc#2625