torrust-actix 4.1.2

A rich, fast and efficient Bittorrent Tracker.
1
2
3
4
5
6
7
8
use std::sync::Arc;
use crate::udp::structs::udp_packet::UdpPacket;
use crossbeam::queue::ArrayQueue;

pub struct ParsePool {
    pub payload: Arc<ArrayQueue<UdpPacket>>,
    pub udp_runtime: Arc<tokio::runtime::Runtime>,
}