2011-08-23 22:31:10 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-08-23 22:31:10 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2011-08-23 22:31:10 +08: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.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2011-08-23 22:31:10 +08:00
|
|
|
***************************************************************************/
|
2016-01-04 22:34:05 +08:00
|
|
|
/* <DESC>
|
2024-02-27 19:29:27 +08:00
|
|
|
* Use CURLOPT_RESOLVE to feed custom IP addresses for given hostname + port
|
2016-01-04 22:34:05 +08:00
|
|
|
* number combinations.
|
|
|
|
* </DESC>
|
|
|
|
*/
|
2011-08-23 22:31:10 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
CURL *curl;
|
|
|
|
CURLcode res = CURLE_OK;
|
|
|
|
|
|
|
|
/* Each single name resolve string should be written using the format
|
2024-02-27 19:29:27 +08:00
|
|
|
HOST:PORT:ADDRESS where HOST is the name libcurl tries to resolve, PORT
|
|
|
|
is the port number of the service where libcurl wants to connect to the
|
|
|
|
HOST and ADDRESS is the numerical IP address
|
2011-08-23 22:31:10 +08:00
|
|
|
*/
|
2019-05-21 16:58:21 +08:00
|
|
|
struct curl_slist *host = curl_slist_append(NULL,
|
|
|
|
"example.com:443:127.0.0.1");
|
2011-08-23 22:31:10 +08:00
|
|
|
|
|
|
|
curl = curl_easy_init();
|
|
|
|
if(curl) {
|
|
|
|
curl_easy_setopt(curl, CURLOPT_RESOLVE, host);
|
2018-09-23 17:20:26 +08:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
2011-08-23 22:31:10 +08:00
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
|
|
|
/* always cleanup */
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
}
|
|
|
|
|
|
|
|
curl_slist_free_all(host);
|
|
|
|
|
|
|
|
return (int)res;
|
|
|
|
}
|