Fix the remaining turn wording in the packet forward error

This commit is contained in:
Viktor Liu
2026-08-17 20:34:40 +02:00
parent 5d807c0491
commit f420366f54

View File

@@ -197,7 +197,7 @@ func (p *WGEBPFProxy) readAndForwardPacket(buf []byte) error {
}
if _, err := conn.Write(buf[:n]); err != nil {
return fmt.Errorf("failed to forward local WG packet (%d) to remote turn conn: %w", addr.Port, err)
return fmt.Errorf("forward local WG packet (%d) to remote relayed conn: %w", addr.Port, err)
}
return nil
}