Browse Source

Fix tests

Nate Brown 1 month ago
parent
commit
9ded90c6e8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      udp/conn.go

+ 2 - 2
udp/conn.go

@@ -30,8 +30,8 @@ func (NoopConn) Rebind() error {
 func (NoopConn) LocalAddr() (netip.AddrPort, error) {
 	return netip.AddrPort{}, nil
 }
-func (NoopConn) ListenOut(_ EncReader) {
-	return
+func (NoopConn) ListenOut(_ EncReader) error {
+	return nil
 }
 func (NoopConn) WriteTo(_ []byte, _ netip.AddrPort) error {
 	return nil