1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* curl-shim.h, curl-shim.c (curl_easy_init, curl_easy_setopt,

curl_easy_perform): Add CURLOPT_VERBOSE and CURLOPT_STDERR for easier
debugging.
This commit is contained in:
David Shaw 2006-02-21 16:16:09 +00:00
parent 0eb4e93bd4
commit e4206de3f5
3 changed files with 26 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/* curl-shim.h
* Copyright (C) 2005 Free Software Foundation, Inc.
* Copyright (C) 2005, 2006 Free Software Foundation, Inc.
*
* This file is part of GNUPG.
*
@ -66,10 +66,12 @@ typedef struct
void *file;
char *postfields;
unsigned int status;
FILE *stderr;
struct
{
unsigned int post:1;
unsigned int failonerror:1;
unsigned int verbose:1;
} flags;
struct http_context hd;
} CURL;