Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
removes backport merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
behzadnouri committed Jan 3, 2022
1 parent d892eda commit a0d29fd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions streamer/src/recvmmsg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,9 @@ pub fn recv_mmsg(sock: &UdpSocket, packets: &mut [Packet]) -> io::Result<(usize,
return Err(io::Error::last_os_error());
}
let mut npkts = 0;
<<<<<<< HEAD
addrs
.iter()
.zip(&hdrs)
=======
let mut total_size = 0;

izip!(addrs, hdrs, packets.iter_mut())
>>>>>>> 20b61e28b (Flip iter operations to keep associated address/header/packets together (#22245))
.take(nrecv as usize)
.filter_map(|(addr, hdr, pkt)| {
let addr = cast_socket_addr(&addr, &hdr)?.to_std();
Expand Down

0 comments on commit a0d29fd

Please sign in to comment.