lib513.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
00009  *
00010  * This software is licensed as described in the file COPYING, which
00011  * you should have received as part of this distribution. The terms
00012  * are also available at https://curl.haxx.se/docs/copyright.html.
00013  *
00014  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00015  * copies of the Software, and permit persons to whom the Software is
00016  * furnished to do so, under the terms of the COPYING file.
00017  *
00018  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00019  * KIND, either express or implied.
00020  *
00021  ***************************************************************************/
00022 #include "test.h"
00023 
00024 #include "memdebug.h"
00025 
00026 static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *userp)
00027 {
00028   (void)ptr;
00029   (void)size;
00030   (void)nmemb;
00031   (void)userp;
00032   return CURL_READFUNC_ABORT;
00033 }
00034 
00035 int test(char *URL)
00036 {
00037   CURL *curl;
00038   CURLcode res=CURLE_OK;
00039 
00040   if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
00041     fprintf(stderr, "curl_global_init() failed\n");
00042     return TEST_ERR_MAJOR_BAD;
00043   }
00044 
00045   curl = curl_easy_init();
00046   if(!curl) {
00047     fprintf(stderr, "curl_easy_init() failed\n");
00048     curl_global_cleanup();
00049     return TEST_ERR_MAJOR_BAD;
00050   }
00051 
00052   /* First set the URL that is about to receive our POST. */
00053   test_setopt(curl, CURLOPT_URL, URL);
00054 
00055   /* Now specify we want to POST data */
00056   test_setopt(curl, CURLOPT_POST, 1L);
00057 
00058   /* Set the expected POST size */
00059   test_setopt(curl, CURLOPT_POSTFIELDSIZE, 1L);
00060 
00061   /* we want to use our own read function */
00062   test_setopt(curl, CURLOPT_READFUNCTION, read_callback);
00063 
00064   /* pointer to pass to our read function */
00065   test_setopt(curl, CURLOPT_READDATA, NULL);
00066 
00067   /* get verbose debug output please */
00068   test_setopt(curl, CURLOPT_VERBOSE, 1L);
00069 
00070   /* include headers in the output */
00071   test_setopt(curl, CURLOPT_HEADER, 1L);
00072 
00073   /* Perform the request, res will get the return code */
00074   res = curl_easy_perform(curl);
00075 
00076 test_cleanup:
00077 
00078   /* always cleanup */
00079   curl_easy_cleanup(curl);
00080   curl_global_cleanup();
00081 
00082   return (int)res;
00083 }


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:05