James Brown
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/lib.rs
|
|
|
@ -134,7 +134,7 @@ async fn create_udp_stream(socket_queue: &Option<Arc<SocketQueue>>, peer: Socket |
|
|
|
Some(queue) => { |
|
|
|
let socket = queue.recv_udp(peer.ip().into()).await?; |
|
|
|
socket.connect(peer).await?; |
|
|
|
UdpStream::from_tokio(socket).await |
|
|
|
UdpStream::from_tokio(socket, peer).await |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|