mirror of
https://github.com/curl/curl.git
synced 2026-08-04 22:36:14 +03:00
convert CURLFTPSSL_CCC_* to long constants
This commit is contained in:
parent
686d3fed2f
commit
144d201c23
6 changed files with 10 additions and 9 deletions
|
|
@ -979,11 +979,12 @@ typedef enum {
|
|||
#endif /* !CURL_NO_OLDIES */
|
||||
|
||||
/* parameter for the CURLOPT_FTP_SSL_CCC option */
|
||||
#define CURLFTPSSL_CCC_NONE 0L /* do not send CCC */
|
||||
#define CURLFTPSSL_CCC_PASSIVE 1L /* Let the server initiate the shutdown */
|
||||
#define CURLFTPSSL_CCC_ACTIVE 2L /* Initiate the shutdown */
|
||||
|
||||
typedef enum {
|
||||
CURLFTPSSL_CCC_NONE, /* do not send CCC */
|
||||
CURLFTPSSL_CCC_PASSIVE, /* Let the server initiate the shutdown */
|
||||
CURLFTPSSL_CCC_ACTIVE, /* Initiate the shutdown */
|
||||
CURLFTPSSL_CCC_LAST /* not an option, never use */
|
||||
CURLFTPSSL_CCC_LAST = 3 /* not an option, never use */
|
||||
} curl_ftpccc;
|
||||
|
||||
/* parameter for the CURLOPT_FTPSSLAUTH option */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue