namespace CurlSharp
{
///
/// Contains values used to specify the order in which cached connections
/// are closed. One of these is passed as the
/// option in a call
/// to
///
public enum CurlClosePolicy
{
///
/// No close policy. Never use this.
///
None = 0,
///
/// Close the oldest cached connections first.
///
Oldest = 1,
///
/// Close the least recently used connections first.
///
LeastRecentlyUsed = 2,
///
/// Close the connections with the least traffic first.
///
LeastTraffic = 3,
///
/// Close the slowest connections first.
///
Slowest = 4,
///
/// Currently unimplemented.
///
Callback = 5,
///
/// End-of-enumeration marker; do not use in application code.
///
Last = 6
};
}