JCMais/node-libcurl

View on GitHub
lib/enum/CurlReadFunc.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Copyright (c) Jonathan Cardoso Machado. All Rights Reserved.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
// https://github.com/curl/curl/blob/e1be8254534898fccafc5d6cd04f6235f283cfbd/include/curl/curl.h#L361-L366
/**
 * Special return codes for `READFUNCTION` option
 *
 * `CURL_READFUNC_ABORT` becomes `CurlReadFunc.Abort`
 *
 * @public
 */
export enum CurlReadFunc {
  Abort = 0x10000000,
  Pause = 0x10000001,
}