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
27 lines
822 B
C#
27 lines
822 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// Your handler for the <see cref="CurlEasy.CurlIoctlCallback" />
|
|
/// delegate is passed one of these values as its first parameter.
|
|
/// Right now, the only supported value is
|
|
/// <code>RestartRead</code>.
|
|
/// </summary>
|
|
public enum CurlIoCommand
|
|
{
|
|
/// <summary>
|
|
/// No IOCTL operation; we should never see this.
|
|
/// </summary>
|
|
Nop = 0,
|
|
|
|
/// <summary>
|
|
/// When this is sent, your callback may need to, for example,
|
|
/// rewind a local file that is being sent via FTP.
|
|
/// </summary>
|
|
RestartRead = 1,
|
|
|
|
/// <summary>
|
|
/// End of enumeration marker, don't use in a client application.
|
|
/// </summary>
|
|
Last = 2
|
|
}
|
|
} |