diff --git a/ChangeLog.txt b/ChangeLog.txt index a6a86c1002..5d4fd536a2 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -66,6 +66,10 @@ This modification needs additional QT5 library Qt5Multimedia so I decided to enable it conditionally by HB_QT_SOUND=yes environment variable. +2023-01-19 09:15 UTC+0100 Antonino Perricone + * contrib/hbcurl/hbcurl.ch + + added HB_CURLINFOTYPE_* macros for debug block + 2023-01-17 13:10 UTC-0300 Lailton Fernando Mariano (lailton/at/paysoft.com.br) * include/hbsocket.h * src/harbour.def diff --git a/contrib/hbcurl/hbcurl.ch b/contrib/hbcurl/hbcurl.ch index ec666d5e51..47623dc227 100644 --- a/contrib/hbcurl/hbcurl.ch +++ b/contrib/hbcurl/hbcurl.ch @@ -558,4 +558,15 @@ #define HB_CURLE_FTP_BAD_FILE_LIST 87 /* unable to parse FTP file list */ #define HB_CURLE_CHUNK_FAILED 88 /* chunk callback reported error */ +/* curl info . */ + +#define HB_CURLINFOTYPE_TEXT 0 /* The data is informational text. */ +#define HB_CURLINFOTYPE_HEADER_IN 1 /* The data is header (or header-like) data received from the peer. */ +#define HB_CURLINFOTYPE_HEADER_OUT 2 /* The data is header (or header-like) data sent to the peer. */ +#define HB_CURLINFOTYPE_DATA_IN 3 /* The data is protocol data received from the peer. */ +#define HB_CURLINFOTYPE_DATA_OUT 4 /* The data is protocol data sent to the peer. */ +#define HB_CURLINFOTYPE_SSL_DATA_IN 5 /* The data is SSL/TLS (binary) data received from the peer. */ +#define HB_CURLINFOTYPE_SSL_DATA_OUT 6 /* The data is SSL/TLS (binary) data sent to the peer. */ +#define HB_CURLINFOTYPE_END 7 /* */ + #endif /* HBCURL_CH_ */