UNPKG

node-libcurl

Version:

The fastest http(s) client (and much more) for Node.js - Node.js bindings for libcurl

50 lines (49 loc) 1.18 kB
/** * 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#L893 // not following Enum name convention here because it feels more natural that way /** * Object with the protocols supported by libcurl, as bitmasks. * Should be used when setting `PROTOCOLS` and `REDIR_PROTOCOLS` options. * * `CURLPROTO_HTTP` becomes `CurlProtocol.HTTP` * * @public */ export enum CurlProtocol { HTTP = 1 << 0, HTTPS = 1 << 1, FTP = 1 << 2, FTPS = 1 << 3, SCP = 1 << 4, SFTP = 1 << 5, TELNET = 1 << 6, LDAP = 1 << 7, LDAPS = 1 << 8, DICT = 1 << 9, FILE = 1 << 10, TFTP = 1 << 11, IMAP = 1 << 12, IMAPS = 1 << 13, POP3 = 1 << 14, POP3S = 1 << 15, SMTP = 1 << 16, SMTPS = 1 << 17, RTSP = 1 << 18, RTMP = 1 << 19, RTMPT = 1 << 20, RTMPE = 1 << 21, RTMPTE = 1 << 22, RTMPS = 1 << 23, RTMPTS = 1 << 24, GOPHER = 1 << 25, SMB = 1 << 26, SMBS = 1 << 27, MQTT = 1 << 28, GOPHERS = 1 << 29, ALL = ~0, }