mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

Really hope I don't break anything with this Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
34 lines
845 B
C#
34 lines
845 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// Contains values used to initialize libcurl internally. One of
|
|
/// these is passed in the call to <see cref="Curl.GlobalInit" />.
|
|
/// </summary>
|
|
public enum CurlInitFlag
|
|
{
|
|
/// <summary>
|
|
/// Initialise nothing extra. This sets no bit.
|
|
/// </summary>
|
|
Nothing = 0,
|
|
|
|
/// <summary>
|
|
/// Initialize Ssl.
|
|
/// </summary>
|
|
Ssl = 1,
|
|
|
|
/// <summary>
|
|
/// Initialize the Win32 socket libraries.
|
|
/// </summary>
|
|
Win32 = 2,
|
|
|
|
/// <summary>
|
|
/// Initialize everything possible. This sets all known bits.
|
|
/// </summary>
|
|
All = 3,
|
|
|
|
/// <summary>
|
|
/// Equivalent to <c>All</c>.
|
|
/// </summary>
|
|
Default = All
|
|
};
|
|
} |