|
6 | 6 | "math/rand"
|
7 | 7 | "net"
|
8 | 8 | "os"
|
| 9 | + "runtime" |
9 | 10 | "strings"
|
10 | 11 | "sync"
|
11 | 12 | "time"
|
@@ -764,26 +765,62 @@ func (s *Server) multicastResponse(msg *dns.Msg, ifIndex int) error {
|
764 | 765 | return fmt.Errorf("failed to pack msg %v: %w", msg, err)
|
765 | 766 | }
|
766 | 767 | if s.ipv4conn != nil {
|
| 768 | + // See https://pkg.go.dev/golang.org/x/net/ipv4#pkg-note-BUG |
| 769 | + // As of Golang 1.18.4 |
| 770 | + // On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented. |
767 | 771 | var wcm ipv4.ControlMessage
|
768 | 772 | if ifIndex != 0 {
|
769 |
| - wcm.IfIndex = ifIndex |
| 773 | + switch runtime.GOOS { |
| 774 | + case "darwin", "ios", "linux": |
| 775 | + wcm.IfIndex = ifIndex |
| 776 | + default: |
| 777 | + iface, _ := net.InterfaceByIndex(ifIndex) |
| 778 | + if err := s.ipv4conn.SetMulticastInterface(iface); err != nil { |
| 779 | + log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err) |
| 780 | + } |
| 781 | + } |
770 | 782 | s.ipv4conn.WriteTo(buf, &wcm, ipv4Addr)
|
771 | 783 | } else {
|
772 | 784 | for _, intf := range s.ifaces {
|
773 |
| - wcm.IfIndex = intf.Index |
| 785 | + switch runtime.GOOS { |
| 786 | + case "darwin", "ios", "linux": |
| 787 | + wcm.IfIndex = intf.Index |
| 788 | + default: |
| 789 | + if err := s.ipv4conn.SetMulticastInterface(&intf); err != nil { |
| 790 | + log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err) |
| 791 | + } |
| 792 | + } |
774 | 793 | s.ipv4conn.WriteTo(buf, &wcm, ipv4Addr)
|
775 | 794 | }
|
776 | 795 | }
|
777 | 796 | }
|
778 | 797 |
|
779 | 798 | if s.ipv6conn != nil {
|
| 799 | + // See https://pkg.go.dev/golang.org/x/net/ipv6#pkg-note-BUG |
| 800 | + // As of Golang 1.18.4 |
| 801 | + // On Windows, the ControlMessage for ReadFrom and WriteTo methods of PacketConn is not implemented. |
780 | 802 | var wcm ipv6.ControlMessage
|
781 | 803 | if ifIndex != 0 {
|
782 |
| - wcm.IfIndex = ifIndex |
| 804 | + switch runtime.GOOS { |
| 805 | + case "darwin", "ios", "linux": |
| 806 | + wcm.IfIndex = ifIndex |
| 807 | + default: |
| 808 | + iface, _ := net.InterfaceByIndex(ifIndex) |
| 809 | + if err := s.ipv6conn.SetMulticastInterface(iface); err != nil { |
| 810 | + log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err) |
| 811 | + } |
| 812 | + } |
783 | 813 | s.ipv6conn.WriteTo(buf, &wcm, ipv6Addr)
|
784 | 814 | } else {
|
785 | 815 | for _, intf := range s.ifaces {
|
786 |
| - wcm.IfIndex = intf.Index |
| 816 | + switch runtime.GOOS { |
| 817 | + case "darwin", "ios", "linux": |
| 818 | + wcm.IfIndex = intf.Index |
| 819 | + default: |
| 820 | + if err := s.ipv6conn.SetMulticastInterface(&intf); err != nil { |
| 821 | + log.Printf("[WARN] mdns: Failed to set multicast interface: %v", err) |
| 822 | + } |
| 823 | + } |
787 | 824 | s.ipv6conn.WriteTo(buf, &wcm, ipv6Addr)
|
788 | 825 | }
|
789 | 826 | }
|
|
0 commit comments