/* return 0 on success */
static int showit(struct SessionHandle *data, curl_infotype type,
- const char *ptr, size_t size)
+ char *ptr, size_t size)
{
static const char * const s_infotype[CURLINFO_END] = {
"* ", "< ", "> ", "{ ", "} ", "{ ", "} " };
}
int Curl_debug(struct SessionHandle *data, curl_infotype type,
- const char *ptr, size_t size,
+ char *ptr, size_t size,
struct connectdata *conn)
{
int rc;
/* the function used to output verbose information */
int Curl_debug(struct SessionHandle *handle, curl_infotype type,
- const char *data, size_t size,
+ char *data, size_t size,
struct connectdata *conn);