Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
CURLINFO_LASTSOCKET(3) | curl_easy_getinfo options | CURLINFO_LASTSOCKET(3) |
NAME
CURLINFO_LASTSOCKET - get the last socket usedSYNOPSIS
#include <curl/curl.h>DESCRIPTION
Deprecated since 7.45.0. Use CURLINFO_ACTIVESOCKET(3) instead.PROTOCOLS
AllEXAMPLE
CURL *curl = curl_easy_init(); if(curl) { long sockfd; /* doesn't work on win64! */ curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* Do not do the transfer - only connect to host */ curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1L); res = curl_easy_perform(curl); /* Extract the socket from the curl handle */ res = curl_easy_getinfo(curl, CURLINFO_LASTSOCKET, &sockfd); if(res != CURLE_OK) { printf("Error: %s\n", curl_easy_strerror(res)); return 1; } }
AVAILABILITY
Added in 7.15.2RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.SEE ALSO
curl_easy_getinfo(3), curl_easy_setopt(3), CURLINFO_ACTIVESOCKET(3),May 6, 2017 | libcurl 7.69.0 |