2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2007-09-26 08:00:01 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-03 14:28:34 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2007-09-26 08:00:01 -04:00
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2008-09-20 00:26:55 -04:00
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
/*
|
|
|
|
* FTP get with NOBODY but no HEADER
|
|
|
|
*/
|
|
|
|
|
|
|
|
int test(char *URL)
|
|
|
|
{
|
|
|
|
CURL *curl;
|
|
|
|
CURLcode res = CURLE_OK;
|
|
|
|
|
2016-04-03 05:57:34 -04:00
|
|
|
if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
|
2007-09-26 08:00:01 -04:00
|
|
|
fprintf(stderr, "curl_global_init() failed\n");
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get a curl handle */
|
2016-12-13 19:29:44 -05:00
|
|
|
curl = curl_easy_init();
|
|
|
|
if(!curl) {
|
2007-09-26 08:00:01 -04:00
|
|
|
fprintf(stderr, "curl_easy_init() failed\n");
|
|
|
|
curl_global_cleanup();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable verbose */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_VERBOSE, 1L);
|
2007-09-26 08:00:01 -04:00
|
|
|
|
|
|
|
/* enable NOBODY */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_NOBODY, 1L);
|
2007-09-26 08:00:01 -04:00
|
|
|
|
|
|
|
/* disable HEADER */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_HEADER, 0L);
|
2007-09-26 08:00:01 -04:00
|
|
|
|
|
|
|
/* specify target */
|
2016-04-03 05:57:34 -04:00
|
|
|
test_setopt(curl, CURLOPT_URL, URL);
|
2007-09-26 08:00:01 -04:00
|
|
|
|
|
|
|
/* Now run off and do what you've been told! */
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_cleanup:
|
|
|
|
|
2007-09-26 08:00:01 -04:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|