Meet us at at Real World in Orlando, Florida.
All functions
Mac OS X
Windows
Crossplatform
Components
Guides
New in version:
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
2.8
CURL.SetOptionRedirProtocols
Component: CURL
Version: 2.5
Mac OS X: Works
Windows: Works
MBS( "CURL.SetOptionRedirProtocols"; handle; value )
Parameters
| Parameter | Description | Example value |
|---|---|---|
| Handle | The CURL session handle. | $curl |
| Value | The bitmask defining which protocols to use. | 1 |
Result
Returns "OK" on success.
Description
Limit which protocols are used for redirection.Pass a number that holds a bitmask of protocol values (see below). If used, this bitmask limits what protocols libcurl may use in a transfer that it follows to in a redirect when CURL.SetOptionFollowLocation is enabled. This allows you to limit specific transfers to only be allowed to use a subset of protocols in redirections. By default libcurl will allow all protocols except for FILE and SCP.
| HTTP | 1 |
| FTP | 4 |
| FTPS | 8 |
| SCP | 16 |
| SFTP | 32 |
| TELNET | 64 |
| LDAP | 128 |
| LDAPS | 256 |
| DICT | 512 |
| FILE | 1024 |
| TFTP | 2048 |
| IMAP | 4096 |
| IMAPS | 8192 |
| POP3 | 16384 |
| POP3S | 32768 |
| SMTP | 65536 |
| SMTPS | 131072 |
| RTSP | 262144 |
| ALL | -1 |
Feedback: Report problem or ask question.