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
30 lines
843 B
C#
30 lines
843 B
C#
namespace CurlSharp.Enums
|
|
{
|
|
/// <summary>
|
|
/// Your handler for the <see cref="CurlEasy.CurlIoctlCallback" /> delegate
|
|
/// should return a member of this enumeration.
|
|
/// </summary>
|
|
public enum CurlIoError
|
|
{
|
|
/// <summary>
|
|
/// Indicate that the callback processed everything okay.
|
|
/// </summary>
|
|
Ok = 0,
|
|
|
|
/// <summary>
|
|
/// Unknown command sent to callback. Right now, only
|
|
/// <code>RestartRead</code> is supported.
|
|
/// </summary>
|
|
UnknownCommand = 1,
|
|
|
|
/// <summary>
|
|
/// Indicate to libcurl that a restart failed.
|
|
/// </summary>
|
|
FailRestart = 2,
|
|
|
|
/// <summary>
|
|
/// End of enumeration marker, don't use in a client application.
|
|
/// </summary>
|
|
Last = 3
|
|
}
|
|
} |