ran cargo fmt

This commit is contained in:
mamoniot 2023-03-27 13:29:52 -04:00
parent 0274a9a552
commit b9f58a0eb1
No known key found for this signature in database
GPG key ID: ADCCDBBE0E3D3B3B

View file

@ -40,7 +40,7 @@ const GCM_CIPHER_POOL_SIZE: usize = 4;
pub struct Context<'a, Application: ApplicationLayer> {
default_physical_mtu: AtomicUsize,
dos_salt: RandomState,
init_has_pending: AtomicBool, // Allowed to be falsely positive
init_has_pending: AtomicBool, // Allowed to be falsely positive
incoming_has_pending: AtomicBool, // Allowed to be falsely positive
init_defrag: Mutex<[(i64, u64, Fragged<Application::IncomingPacketBuffer, MAX_NOISE_HANDSHAKE_FRAGMENTS>); MAX_INCOMPLETE_SESSION_QUEUE_SIZE]>,
incoming_sessions: RwLock<[(i64, u64, Option<Arc<IncomingIncompleteSession<Application>>>); MAX_INCOMPLETE_SESSION_QUEUE_SIZE]>,