+#ifndef HEADER_CURL_GSSAPI_H
+#define HEADER_CURL_GSSAPI_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
OM_uint32 * ret_flags);
#endif /* HAVE_GSSAPI */
+
+#endif /* HEADER_CURL_GSSAPI_H */
curl_off_t included_body = 0;
const char *httpstring;
Curl_send_buffer *req_buffer;
- curl_off_t postsize; /* off_t type to be able to hold a large file size */
+ curl_off_t postsize = 0; /* off_t type to be able to hold a large file size */
int seekerr = CURL_SEEKFUNC_OK;
/* Always consider the DO phase done after this function call, even if there
struct curl_slist *headers)
{
CURLMsg *msg;
- CURLMcode code;
long L;
int M, Q, U = -1;
fd_set R, W, E;
while (U) {
- code = curl_multi_perform(cm, &U);
+ (void) curl_multi_perform(cm, &U);
if (U) {
FD_ZERO(&R);
{
CURL *http_handle;
CURLM *multi_handle = NULL;
- CURLMcode code;
int res;
int still_running; /* keep number of running handles */
curl_multi_add_handle(multi_handle, http_handle);
/* we start some action by calling perform right away */
- code = curl_multi_perform(multi_handle, &still_running);
+ (void) curl_multi_perform(multi_handle, &still_running);
while(still_running) {
struct timeval timeout;
case 0:
default:
/* timeout or readable/writable sockets */
- code = curl_multi_perform(multi_handle, &still_running);
+ (void) curl_multi_perform(multi_handle, &still_running);
break;
}
}
* responses with a pre-written string saved in test case test2005.
*/
-#include <stdio.h>
-#include <errno.h>
+#define CURL_NO_OLDIES
+
+#include "setup.h"
+
+#ifdef HAVE_UNISTD_H
#include <unistd.h>
+#endif
+#define ENABLE_CURLX_PRINTF
#include "curlx.h" /* from the private lib dir */
#include "getpart.h"
#include "util.h"
+/* include memdebug.h last */
+#include "memdebug.h"
+
#ifndef DEFAULT_LOGFILE
#define DEFAULT_LOGFILE "log/fake_ntlm.log"
#endif