torrust-actix 4.2.15

A rich, fast and efficient Bittorrent Tracker.
1
2
3
4
5
6
7
8
9
use std::sync::Arc;
use tokio::net::UdpSocket;

#[derive(Debug, Clone)]
pub enum UdpReply {
    Socket(Arc<UdpSocket>),
    #[cfg(windows)]
    Rio(Arc<crate::udp::impls::rio_recv::RioSender>),
}