aboutsummaryrefslogtreecommitdiff
path: root/lib/getinfo.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-10-30 11:53:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-10-30 11:53:40 +0000
commit0cff27906300a046e3569d7b32887d681fc8ea62 (patch)
treeb5f219f58144e5ddebfdff80b595e2ebb309d904 /lib/getinfo.c
parent09ba856e3902a439c516c6cc1f40767b838b2a44 (diff)
new urldata ssl layout and T. Bharath brought the new SSL cert verify function
Diffstat (limited to 'lib/getinfo.c')
-rw-r--r--lib/getinfo.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/getinfo.c b/lib/getinfo.c
index 177af976e..dbcaa1b07 100644
--- a/lib/getinfo.c
+++ b/lib/getinfo.c
@@ -117,6 +117,9 @@ CURLcode curl_getinfo(CURL *curl, CURLINFO info, ...)
case CURLINFO_SPEED_UPLOAD:
*param_doublep = data->progress.ulspeed;
break;
+ case CURLINFO_SSL_VERIFYRESULT:
+ *param_longp = data->ssl.certverifyresult;
+ break;
default:
return CURLE_BAD_FUNCTION_ARGUMENT;
}