mirror of
https://github.com/Jackett/Jackett.git
synced 2025-12-25 07:14:11 +01: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
31 lines
803 B
C#
31 lines
803 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// This enumeration contains values used to specify the FTP Ssl
|
|
/// authorization level using the
|
|
/// <see cref="CurlOption.FtpSslAuth" /> option when calling
|
|
/// <see cref="CurlEasy.SetOpt" />
|
|
/// </summary>
|
|
public enum CurlFtpAuth
|
|
{
|
|
/// <summary>
|
|
/// Let <c>libcurl</c> decide on the authorization scheme.
|
|
/// </summary>
|
|
Default = 0,
|
|
|
|
/// <summary>
|
|
/// Use "AUTH Ssl".
|
|
/// </summary>
|
|
SSL = 1,
|
|
|
|
/// <summary>
|
|
/// Use "AUTH TLS".
|
|
/// </summary>
|
|
TLS = 2,
|
|
|
|
/// <summary>
|
|
/// End-of-enumeration marker. Do not use in a client application.
|
|
/// </summary>
|
|
Last = 3
|
|
};
|
|
} |