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
21 lines
488 B
C#
21 lines
488 B
C#
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
//
|
|
// Copyright (c) 2017, Dr. Masroor Ehsan. All rights reserved.
|
|
//
|
|
// $Id:$
|
|
//
|
|
// Last modified: 25.01.2017 1:23 AM
|
|
//
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
namespace CurlSharp.Enums
|
|
{
|
|
/* bitmask bits for CURLMOPT_PIPELINING */
|
|
|
|
public enum CurlPipelining : long
|
|
{
|
|
Nothing = 0,
|
|
Http1 = 1,
|
|
Multiplex = 2
|
|
}
|
|
} |