// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
//======================================================================================================================
// Imports
//======================================================================================================================
use crate;
//======================================================================================================================
// Constants
//======================================================================================================================
/// Default number of buffers in the body pool.
pub const DEFAULT_BODY_POOL_SIZE: usize = 8192 - 1;
/// Default value for maximum body size.
pub const DEFAULT_MAX_BODY_SIZE: usize = as usize;
/// Default per-thread cache size.
pub const DEFAULT_CACHE_SIZE: usize = 250;