mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
31 lines
797 B
C#
31 lines
797 B
C#
namespace CurlSharp
|
|
{
|
|
/// <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
|
|
};
|
|
} |