// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/// Default response buffer limit of 2 GB. This follows the defaults in .NET:
///
/// <https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpclient.maxresponsecontentbuffersize>
///
/// Maybe this is too excessive and should be reduced in the future, but for now it is set to 2 GB.
pub const DEFAULT_RESPONSE_BUFFER_LIMIT_BYTES: usize = 2 * 1024 * 1024 * 1024;
pub const ERR_POISONED_LOCK: &str =
"poisoned lock - cannot continue execution because security and privacy guarantees can no longer be upheld";