getinfo.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, 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. #include "curl_setup.h"
  25. #include <curl/curl.h>
  26. #include "urldata.h"
  27. #include "getinfo.h"
  28. #include "vtls/vtls.h"
  29. #include "connect.h" /* Curl_getconnectinfo() */
  30. #include "progress.h"
  31. /* The last #include files should be: */
  32. #include "curl_memory.h"
  33. #include "memdebug.h"
  34. /*
  35. * Initialize statistical and informational data.
  36. *
  37. * This function is called in curl_easy_reset, curl_easy_duphandle and at the
  38. * beginning of a perform session. It must reset the session-info variables,
  39. * in particular all variables in struct PureInfo.
  40. */
  41. CURLcode Curl_initinfo(struct Curl_easy *data)
  42. {
  43. struct Progress *pro = &data->progress;
  44. struct PureInfo *info = &data->info;
  45. pro->t_nslookup = 0;
  46. pro->t_connect = 0;
  47. pro->t_appconnect = 0;
  48. pro->t_pretransfer = 0;
  49. pro->t_starttransfer = 0;
  50. pro->timespent = 0;
  51. pro->t_redirect = 0;
  52. pro->is_t_startransfer_set = false;
  53. info->httpcode = 0;
  54. info->httpproxycode = 0;
  55. info->httpversion = 0;
  56. info->filetime = -1; /* -1 is an illegal time and thus means unknown */
  57. info->timecond = FALSE;
  58. info->header_size = 0;
  59. info->request_size = 0;
  60. info->proxyauthavail = 0;
  61. info->httpauthavail = 0;
  62. info->numconnects = 0;
  63. free(info->contenttype);
  64. info->contenttype = NULL;
  65. free(info->wouldredirect);
  66. info->wouldredirect = NULL;
  67. info->primary.remote_ip[0] = '\0';
  68. info->primary.local_ip[0] = '\0';
  69. info->primary.remote_port = 0;
  70. info->primary.local_port = 0;
  71. info->retry_after = 0;
  72. info->conn_scheme = 0;
  73. info->conn_protocol = 0;
  74. #ifdef USE_SSL
  75. Curl_ssl_free_certinfo(data);
  76. #endif
  77. return CURLE_OK;
  78. }
  79. static CURLcode getinfo_char(struct Curl_easy *data, CURLINFO info,
  80. const char **param_charp)
  81. {
  82. switch(info) {
  83. case CURLINFO_EFFECTIVE_URL:
  84. *param_charp = data->state.url?data->state.url:(char *)"";
  85. break;
  86. case CURLINFO_EFFECTIVE_METHOD: {
  87. const char *m = data->set.str[STRING_CUSTOMREQUEST];
  88. if(!m) {
  89. if(data->set.opt_no_body)
  90. m = "HEAD";
  91. #ifndef CURL_DISABLE_HTTP
  92. else {
  93. switch(data->state.httpreq) {
  94. case HTTPREQ_POST:
  95. case HTTPREQ_POST_FORM:
  96. case HTTPREQ_POST_MIME:
  97. m = "POST";
  98. break;
  99. case HTTPREQ_PUT:
  100. m = "PUT";
  101. break;
  102. default: /* this should never happen */
  103. case HTTPREQ_GET:
  104. m = "GET";
  105. break;
  106. case HTTPREQ_HEAD:
  107. m = "HEAD";
  108. break;
  109. }
  110. }
  111. #endif
  112. }
  113. *param_charp = m;
  114. }
  115. break;
  116. case CURLINFO_CONTENT_TYPE:
  117. *param_charp = data->info.contenttype;
  118. break;
  119. case CURLINFO_PRIVATE:
  120. *param_charp = (char *) data->set.private_data;
  121. break;
  122. case CURLINFO_FTP_ENTRY_PATH:
  123. /* Return the entrypath string from the most recent connection.
  124. This pointer was copied from the connectdata structure by FTP.
  125. The actual string may be free()ed by subsequent libcurl calls so
  126. it must be copied to a safer area before the next libcurl call.
  127. Callers must never free it themselves. */
  128. *param_charp = data->state.most_recent_ftp_entrypath;
  129. break;
  130. case CURLINFO_REDIRECT_URL:
  131. /* Return the URL this request would have been redirected to if that
  132. option had been enabled! */
  133. *param_charp = data->info.wouldredirect;
  134. break;
  135. case CURLINFO_REFERER:
  136. /* Return the referrer header for this request, or NULL if unset */
  137. *param_charp = data->state.referer;
  138. break;
  139. case CURLINFO_PRIMARY_IP:
  140. /* Return the ip address of the most recent (primary) connection */
  141. *param_charp = data->info.primary.remote_ip;
  142. break;
  143. case CURLINFO_LOCAL_IP:
  144. /* Return the source/local ip address of the most recent (primary)
  145. connection */
  146. *param_charp = data->info.primary.local_ip;
  147. break;
  148. case CURLINFO_RTSP_SESSION_ID:
  149. #ifndef CURL_DISABLE_RTSP
  150. *param_charp = data->set.str[STRING_RTSP_SESSION_ID];
  151. #else
  152. *param_charp = NULL;
  153. #endif
  154. break;
  155. case CURLINFO_SCHEME:
  156. *param_charp = data->info.conn_scheme;
  157. break;
  158. case CURLINFO_CAPATH:
  159. #ifdef CURL_CA_PATH
  160. *param_charp = CURL_CA_PATH;
  161. #else
  162. *param_charp = NULL;
  163. #endif
  164. break;
  165. case CURLINFO_CAINFO:
  166. #ifdef CURL_CA_BUNDLE
  167. *param_charp = CURL_CA_BUNDLE;
  168. #else
  169. *param_charp = NULL;
  170. #endif
  171. break;
  172. default:
  173. return CURLE_UNKNOWN_OPTION;
  174. }
  175. return CURLE_OK;
  176. }
  177. static CURLcode getinfo_long(struct Curl_easy *data, CURLINFO info,
  178. long *param_longp)
  179. {
  180. curl_socket_t sockfd;
  181. union {
  182. unsigned long *to_ulong;
  183. long *to_long;
  184. } lptr;
  185. #ifdef DEBUGBUILD
  186. char *timestr = getenv("CURL_TIME");
  187. if(timestr) {
  188. unsigned long val = strtol(timestr, NULL, 10);
  189. switch(info) {
  190. case CURLINFO_LOCAL_PORT:
  191. *param_longp = (long)val;
  192. return CURLE_OK;
  193. default:
  194. break;
  195. }
  196. }
  197. /* use another variable for this to allow different values */
  198. timestr = getenv("CURL_DEBUG_SIZE");
  199. if(timestr) {
  200. unsigned long val = strtol(timestr, NULL, 10);
  201. switch(info) {
  202. case CURLINFO_HEADER_SIZE:
  203. case CURLINFO_REQUEST_SIZE:
  204. *param_longp = (long)val;
  205. return CURLE_OK;
  206. default:
  207. break;
  208. }
  209. }
  210. #endif
  211. switch(info) {
  212. case CURLINFO_RESPONSE_CODE:
  213. *param_longp = data->info.httpcode;
  214. break;
  215. case CURLINFO_HTTP_CONNECTCODE:
  216. *param_longp = data->info.httpproxycode;
  217. break;
  218. case CURLINFO_FILETIME:
  219. if(data->info.filetime > LONG_MAX)
  220. *param_longp = LONG_MAX;
  221. else if(data->info.filetime < LONG_MIN)
  222. *param_longp = LONG_MIN;
  223. else
  224. *param_longp = (long)data->info.filetime;
  225. break;
  226. case CURLINFO_HEADER_SIZE:
  227. *param_longp = (long)data->info.header_size;
  228. break;
  229. case CURLINFO_REQUEST_SIZE:
  230. *param_longp = (long)data->info.request_size;
  231. break;
  232. case CURLINFO_SSL_VERIFYRESULT:
  233. *param_longp = data->set.ssl.certverifyresult;
  234. break;
  235. #ifndef CURL_DISABLE_PROXY
  236. case CURLINFO_PROXY_SSL_VERIFYRESULT:
  237. *param_longp = data->set.proxy_ssl.certverifyresult;
  238. break;
  239. #endif
  240. case CURLINFO_REDIRECT_COUNT:
  241. *param_longp = data->state.followlocation;
  242. break;
  243. case CURLINFO_HTTPAUTH_AVAIL:
  244. lptr.to_long = param_longp;
  245. *lptr.to_ulong = data->info.httpauthavail;
  246. break;
  247. case CURLINFO_PROXYAUTH_AVAIL:
  248. lptr.to_long = param_longp;
  249. *lptr.to_ulong = data->info.proxyauthavail;
  250. break;
  251. case CURLINFO_OS_ERRNO:
  252. *param_longp = data->state.os_errno;
  253. break;
  254. case CURLINFO_NUM_CONNECTS:
  255. *param_longp = data->info.numconnects;
  256. break;
  257. case CURLINFO_LASTSOCKET:
  258. sockfd = Curl_getconnectinfo(data, NULL);
  259. /* note: this is not a good conversion for systems with 64 bit sockets and
  260. 32 bit longs */
  261. if(sockfd != CURL_SOCKET_BAD)
  262. *param_longp = (long)sockfd;
  263. else
  264. /* this interface is documented to return -1 in case of badness, which
  265. may not be the same as the CURL_SOCKET_BAD value */
  266. *param_longp = -1;
  267. break;
  268. case CURLINFO_PRIMARY_PORT:
  269. /* Return the (remote) port of the most recent (primary) connection */
  270. *param_longp = data->info.primary.remote_port;
  271. break;
  272. case CURLINFO_LOCAL_PORT:
  273. /* Return the local port of the most recent (primary) connection */
  274. *param_longp = data->info.primary.local_port;
  275. break;
  276. case CURLINFO_PROXY_ERROR:
  277. *param_longp = (long)data->info.pxcode;
  278. break;
  279. case CURLINFO_CONDITION_UNMET:
  280. if(data->info.httpcode == 304)
  281. *param_longp = 1L;
  282. else
  283. /* return if the condition prevented the document to get transferred */
  284. *param_longp = data->info.timecond ? 1L : 0L;
  285. break;
  286. #ifndef CURL_DISABLE_RTSP
  287. case CURLINFO_RTSP_CLIENT_CSEQ:
  288. *param_longp = data->state.rtsp_next_client_CSeq;
  289. break;
  290. case CURLINFO_RTSP_SERVER_CSEQ:
  291. *param_longp = data->state.rtsp_next_server_CSeq;
  292. break;
  293. case CURLINFO_RTSP_CSEQ_RECV:
  294. *param_longp = data->state.rtsp_CSeq_recv;
  295. break;
  296. #endif
  297. case CURLINFO_HTTP_VERSION:
  298. switch(data->info.httpversion) {
  299. case 10:
  300. *param_longp = CURL_HTTP_VERSION_1_0;
  301. break;
  302. case 11:
  303. *param_longp = CURL_HTTP_VERSION_1_1;
  304. break;
  305. case 20:
  306. *param_longp = CURL_HTTP_VERSION_2_0;
  307. break;
  308. case 30:
  309. *param_longp = CURL_HTTP_VERSION_3;
  310. break;
  311. default:
  312. *param_longp = CURL_HTTP_VERSION_NONE;
  313. break;
  314. }
  315. break;
  316. case CURLINFO_PROTOCOL:
  317. *param_longp = data->info.conn_protocol;
  318. break;
  319. case CURLINFO_USED_PROXY:
  320. *param_longp =
  321. #ifdef CURL_DISABLE_PROXY
  322. 0
  323. #else
  324. data->info.used_proxy
  325. #endif
  326. ;
  327. break;
  328. default:
  329. return CURLE_UNKNOWN_OPTION;
  330. }
  331. return CURLE_OK;
  332. }
  333. #define DOUBLE_SECS(x) (double)(x)/1000000
  334. static CURLcode getinfo_offt(struct Curl_easy *data, CURLINFO info,
  335. curl_off_t *param_offt)
  336. {
  337. #ifdef DEBUGBUILD
  338. char *timestr = getenv("CURL_TIME");
  339. if(timestr) {
  340. unsigned long val = strtol(timestr, NULL, 10);
  341. switch(info) {
  342. case CURLINFO_TOTAL_TIME_T:
  343. case CURLINFO_NAMELOOKUP_TIME_T:
  344. case CURLINFO_CONNECT_TIME_T:
  345. case CURLINFO_APPCONNECT_TIME_T:
  346. case CURLINFO_PRETRANSFER_TIME_T:
  347. case CURLINFO_STARTTRANSFER_TIME_T:
  348. case CURLINFO_REDIRECT_TIME_T:
  349. case CURLINFO_SPEED_DOWNLOAD_T:
  350. case CURLINFO_SPEED_UPLOAD_T:
  351. *param_offt = (curl_off_t)val;
  352. return CURLE_OK;
  353. default:
  354. break;
  355. }
  356. }
  357. #endif
  358. switch(info) {
  359. case CURLINFO_FILETIME_T:
  360. *param_offt = (curl_off_t)data->info.filetime;
  361. break;
  362. case CURLINFO_SIZE_UPLOAD_T:
  363. *param_offt = data->progress.uploaded;
  364. break;
  365. case CURLINFO_SIZE_DOWNLOAD_T:
  366. *param_offt = data->progress.downloaded;
  367. break;
  368. case CURLINFO_SPEED_DOWNLOAD_T:
  369. *param_offt = data->progress.dlspeed;
  370. break;
  371. case CURLINFO_SPEED_UPLOAD_T:
  372. *param_offt = data->progress.ulspeed;
  373. break;
  374. case CURLINFO_CONTENT_LENGTH_DOWNLOAD_T:
  375. *param_offt = (data->progress.flags & PGRS_DL_SIZE_KNOWN)?
  376. data->progress.size_dl:-1;
  377. break;
  378. case CURLINFO_CONTENT_LENGTH_UPLOAD_T:
  379. *param_offt = (data->progress.flags & PGRS_UL_SIZE_KNOWN)?
  380. data->progress.size_ul:-1;
  381. break;
  382. case CURLINFO_TOTAL_TIME_T:
  383. *param_offt = data->progress.timespent;
  384. break;
  385. case CURLINFO_NAMELOOKUP_TIME_T:
  386. *param_offt = data->progress.t_nslookup;
  387. break;
  388. case CURLINFO_CONNECT_TIME_T:
  389. *param_offt = data->progress.t_connect;
  390. break;
  391. case CURLINFO_APPCONNECT_TIME_T:
  392. *param_offt = data->progress.t_appconnect;
  393. break;
  394. case CURLINFO_PRETRANSFER_TIME_T:
  395. *param_offt = data->progress.t_pretransfer;
  396. break;
  397. case CURLINFO_STARTTRANSFER_TIME_T:
  398. *param_offt = data->progress.t_starttransfer;
  399. break;
  400. case CURLINFO_QUEUE_TIME_T:
  401. *param_offt = data->progress.t_postqueue;
  402. break;
  403. case CURLINFO_REDIRECT_TIME_T:
  404. *param_offt = data->progress.t_redirect;
  405. break;
  406. case CURLINFO_RETRY_AFTER:
  407. *param_offt = data->info.retry_after;
  408. break;
  409. case CURLINFO_XFER_ID:
  410. *param_offt = data->id;
  411. break;
  412. case CURLINFO_CONN_ID:
  413. *param_offt = data->conn?
  414. data->conn->connection_id : data->state.recent_conn_id;
  415. break;
  416. default:
  417. return CURLE_UNKNOWN_OPTION;
  418. }
  419. return CURLE_OK;
  420. }
  421. static CURLcode getinfo_double(struct Curl_easy *data, CURLINFO info,
  422. double *param_doublep)
  423. {
  424. #ifdef DEBUGBUILD
  425. char *timestr = getenv("CURL_TIME");
  426. if(timestr) {
  427. unsigned long val = strtol(timestr, NULL, 10);
  428. switch(info) {
  429. case CURLINFO_TOTAL_TIME:
  430. case CURLINFO_NAMELOOKUP_TIME:
  431. case CURLINFO_CONNECT_TIME:
  432. case CURLINFO_APPCONNECT_TIME:
  433. case CURLINFO_PRETRANSFER_TIME:
  434. case CURLINFO_STARTTRANSFER_TIME:
  435. case CURLINFO_REDIRECT_TIME:
  436. case CURLINFO_SPEED_DOWNLOAD:
  437. case CURLINFO_SPEED_UPLOAD:
  438. *param_doublep = (double)val;
  439. return CURLE_OK;
  440. default:
  441. break;
  442. }
  443. }
  444. #endif
  445. switch(info) {
  446. case CURLINFO_TOTAL_TIME:
  447. *param_doublep = DOUBLE_SECS(data->progress.timespent);
  448. break;
  449. case CURLINFO_NAMELOOKUP_TIME:
  450. *param_doublep = DOUBLE_SECS(data->progress.t_nslookup);
  451. break;
  452. case CURLINFO_CONNECT_TIME:
  453. *param_doublep = DOUBLE_SECS(data->progress.t_connect);
  454. break;
  455. case CURLINFO_APPCONNECT_TIME:
  456. *param_doublep = DOUBLE_SECS(data->progress.t_appconnect);
  457. break;
  458. case CURLINFO_PRETRANSFER_TIME:
  459. *param_doublep = DOUBLE_SECS(data->progress.t_pretransfer);
  460. break;
  461. case CURLINFO_STARTTRANSFER_TIME:
  462. *param_doublep = DOUBLE_SECS(data->progress.t_starttransfer);
  463. break;
  464. case CURLINFO_SIZE_UPLOAD:
  465. *param_doublep = (double)data->progress.uploaded;
  466. break;
  467. case CURLINFO_SIZE_DOWNLOAD:
  468. *param_doublep = (double)data->progress.downloaded;
  469. break;
  470. case CURLINFO_SPEED_DOWNLOAD:
  471. *param_doublep = (double)data->progress.dlspeed;
  472. break;
  473. case CURLINFO_SPEED_UPLOAD:
  474. *param_doublep = (double)data->progress.ulspeed;
  475. break;
  476. case CURLINFO_CONTENT_LENGTH_DOWNLOAD:
  477. *param_doublep = (data->progress.flags & PGRS_DL_SIZE_KNOWN)?
  478. (double)data->progress.size_dl:-1;
  479. break;
  480. case CURLINFO_CONTENT_LENGTH_UPLOAD:
  481. *param_doublep = (data->progress.flags & PGRS_UL_SIZE_KNOWN)?
  482. (double)data->progress.size_ul:-1;
  483. break;
  484. case CURLINFO_REDIRECT_TIME:
  485. *param_doublep = DOUBLE_SECS(data->progress.t_redirect);
  486. break;
  487. default:
  488. return CURLE_UNKNOWN_OPTION;
  489. }
  490. return CURLE_OK;
  491. }
  492. static CURLcode getinfo_slist(struct Curl_easy *data, CURLINFO info,
  493. struct curl_slist **param_slistp)
  494. {
  495. union {
  496. struct curl_certinfo *to_certinfo;
  497. struct curl_slist *to_slist;
  498. } ptr;
  499. switch(info) {
  500. case CURLINFO_SSL_ENGINES:
  501. *param_slistp = Curl_ssl_engines_list(data);
  502. break;
  503. case CURLINFO_COOKIELIST:
  504. *param_slistp = Curl_cookie_list(data);
  505. break;
  506. case CURLINFO_CERTINFO:
  507. /* Return the a pointer to the certinfo struct. Not really an slist
  508. pointer but we can pretend it is here */
  509. ptr.to_certinfo = &data->info.certs;
  510. *param_slistp = ptr.to_slist;
  511. break;
  512. case CURLINFO_TLS_SESSION:
  513. case CURLINFO_TLS_SSL_PTR:
  514. {
  515. struct curl_tlssessioninfo **tsip = (struct curl_tlssessioninfo **)
  516. param_slistp;
  517. struct curl_tlssessioninfo *tsi = &data->tsi;
  518. #ifdef USE_SSL
  519. struct connectdata *conn = data->conn;
  520. #endif
  521. *tsip = tsi;
  522. tsi->backend = Curl_ssl_backend();
  523. tsi->internals = NULL;
  524. #ifdef USE_SSL
  525. if(conn && tsi->backend != CURLSSLBACKEND_NONE) {
  526. tsi->internals = Curl_ssl_get_internals(data, FIRSTSOCKET, info, 0);
  527. }
  528. #endif
  529. }
  530. break;
  531. default:
  532. return CURLE_UNKNOWN_OPTION;
  533. }
  534. return CURLE_OK;
  535. }
  536. static CURLcode getinfo_socket(struct Curl_easy *data, CURLINFO info,
  537. curl_socket_t *param_socketp)
  538. {
  539. switch(info) {
  540. case CURLINFO_ACTIVESOCKET:
  541. *param_socketp = Curl_getconnectinfo(data, NULL);
  542. break;
  543. default:
  544. return CURLE_UNKNOWN_OPTION;
  545. }
  546. return CURLE_OK;
  547. }
  548. CURLcode Curl_getinfo(struct Curl_easy *data, CURLINFO info, ...)
  549. {
  550. va_list arg;
  551. long *param_longp = NULL;
  552. double *param_doublep = NULL;
  553. curl_off_t *param_offt = NULL;
  554. const char **param_charp = NULL;
  555. struct curl_slist **param_slistp = NULL;
  556. curl_socket_t *param_socketp = NULL;
  557. int type;
  558. CURLcode result = CURLE_UNKNOWN_OPTION;
  559. if(!data)
  560. return CURLE_BAD_FUNCTION_ARGUMENT;
  561. va_start(arg, info);
  562. type = CURLINFO_TYPEMASK & (int)info;
  563. switch(type) {
  564. case CURLINFO_STRING:
  565. param_charp = va_arg(arg, const char **);
  566. if(param_charp)
  567. result = getinfo_char(data, info, param_charp);
  568. break;
  569. case CURLINFO_LONG:
  570. param_longp = va_arg(arg, long *);
  571. if(param_longp)
  572. result = getinfo_long(data, info, param_longp);
  573. break;
  574. case CURLINFO_DOUBLE:
  575. param_doublep = va_arg(arg, double *);
  576. if(param_doublep)
  577. result = getinfo_double(data, info, param_doublep);
  578. break;
  579. case CURLINFO_OFF_T:
  580. param_offt = va_arg(arg, curl_off_t *);
  581. if(param_offt)
  582. result = getinfo_offt(data, info, param_offt);
  583. break;
  584. case CURLINFO_SLIST:
  585. param_slistp = va_arg(arg, struct curl_slist **);
  586. if(param_slistp)
  587. result = getinfo_slist(data, info, param_slistp);
  588. break;
  589. case CURLINFO_SOCKET:
  590. param_socketp = va_arg(arg, curl_socket_t *);
  591. if(param_socketp)
  592. result = getinfo_socket(data, info, param_socketp);
  593. break;
  594. default:
  595. break;
  596. }
  597. va_end(arg);
  598. return result;
  599. }