Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/pkg
Path: blob/main/external/curl/tests/libtest/lib1530.c
2066 views
1
/***************************************************************************
2
* _ _ ____ _
3
* Project ___| | | | _ \| |
4
* / __| | | | |_) | |
5
* | (__| |_| | _ <| |___
6
* \___|\___/|_| \_\_____|
7
*
8
* Copyright (C) Daniel Stenberg, <[email protected]>, et al.
9
*
10
* This software is licensed as described in the file COPYING, which
11
* you should have received as part of this distribution. The terms
12
* are also available at https://curl.se/docs/copyright.html.
13
*
14
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
* copies of the Software, and permit persons to whom the Software is
16
* furnished to do so, under the terms of the COPYING file.
17
*
18
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
* KIND, either express or implied.
20
*
21
* SPDX-License-Identifier: curl
22
*
23
***************************************************************************/
24
25
#include "test.h"
26
27
#include "memdebug.h"
28
29
static curl_socket_t opensocket(void *clientp,
30
curlsocktype purpose,
31
struct curl_sockaddr *address)
32
{
33
(void)purpose;
34
(void)address;
35
(void)clientp;
36
curl_mfprintf(stderr, "opensocket() returns CURL_SOCKET_BAD\n");
37
return CURL_SOCKET_BAD;
38
}
39
40
CURLcode test(char *URL)
41
{
42
CURL *curl = NULL;
43
CURLcode res = CURLE_FAILED_INIT;
44
(void)URL;
45
46
if(curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
47
curl_mfprintf(stderr, "curl_global_init() failed\n");
48
return TEST_ERR_MAJOR_BAD;
49
}
50
51
curl = curl_easy_init();
52
if(!curl) {
53
curl_mfprintf(stderr, "curl_easy_init() failed\n");
54
curl_global_cleanup();
55
return TEST_ERR_MAJOR_BAD;
56
}
57
58
test_setopt(curl, CURLOPT_URL, "http://99.99.99.99:9999");
59
test_setopt(curl, CURLOPT_VERBOSE, 1L);
60
test_setopt(curl, CURLOPT_OPENSOCKETFUNCTION, opensocket);
61
62
res = curl_easy_perform(curl);
63
64
test_cleanup:
65
66
curl_easy_cleanup(curl);
67
curl_global_cleanup();
68
69
return res;
70
}
71
72