namespace CurlSharp
{
///
/// Contains values used to initialize libcurl internally. One of
/// these is passed in the call to .
///
public enum CurlInitFlag
{
///
/// Initialise nothing extra. This sets no bit.
///
Nothing = 0,
///
/// Initialize Ssl.
///
Ssl = 1,
///
/// Initialize the Win32 socket libraries.
///
Win32 = 2,
///
/// Initialize everything possible. This sets all known bits.
///
All = 3,
///
/// Equivalent to All.
///
Default = All
};
}