Merge tag 'v1.9.4' into multiport

1.9.4 Release
This commit is contained in:
Wade Simmons
2024-09-13 10:17:59 -04:00
83 changed files with 2056 additions and 2755 deletions

View File

@@ -5,6 +5,7 @@ package udp
import (
"fmt"
"net/netip"
"runtime"
"github.com/sirupsen/logrus"
@@ -19,7 +20,7 @@ func NewRawConn(l *logrus.Logger, ip string, port int, basePort uint16) (*RawCon
return nil, fmt.Errorf("multiport tx is not supported on %s", runtime.GOOS)
}
func (u *RawConn) WriteTo(raw []byte, fromPort uint16, addr *Addr) error {
func (u *RawConn) WriteTo(raw []byte, fromPort uint16, addr netip.AddrPort) error {
return fmt.Errorf("multiport tx is not supported on %s", runtime.GOOS)
}