lib1513.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2015, 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 /*
00023  * Test case converted from bug report #1318 by Petr Novak.
00024  *
00025  * Before the fix, this test program returned 52 (CURLE_GOT_NOTHING) instead
00026  * of 42 (CURLE_ABORTED_BY_CALLBACK).
00027  */
00028 
00029 #include "test.h"
00030 
00031 #include "memdebug.h"
00032 
00033 static int progressKiller(void *arg,
00034                           double dltotal,
00035                           double dlnow,
00036                           double ultotal,
00037                           double ulnow)
00038 {
00039   (void)arg;
00040   (void)dltotal;
00041   (void)dlnow;
00042   (void)ultotal;
00043   (void)ulnow;
00044   printf("PROGRESSFUNCTION called\n");
00045   return 1;
00046 }
00047 
00048 int test(char *URL)
00049 {
00050   CURL *curl;
00051   int res=0;
00052 
00053   global_init(CURL_GLOBAL_ALL);
00054 
00055   easy_init(curl);
00056 
00057   easy_setopt(curl, CURLOPT_URL, URL);
00058   easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
00059   easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
00060   easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressKiller);
00061   easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
00062   easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
00063 
00064   res = curl_easy_perform(curl);
00065 
00066 test_cleanup:
00067 
00068   /* undocumented cleanup sequence - type UA */
00069 
00070   curl_easy_cleanup(curl);
00071   curl_global_cleanup();
00072 
00073   return res;
00074 }


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