sessioninfo.c
Go to the documentation of this file.
1 /***************************************************************************
2  * _ _ ____ _
3  * Project ___| | | | _ \| |
4  * / __| | | | |_) | |
5  * | (__| |_| | _ <| |___
6  * \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2016, 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.haxx.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  ***************************************************************************/
22 /* <DESC>
23  * Uses the CURLINFO_TLS_SESSION data.
24  * </DESC>
25  */
26 
27 /* Note that this example currently requires curl to be linked against
28  GnuTLS (and this program must also be linked against -lgnutls). */
29 
30 #include <stdio.h>
31 
32 #include <curl/curl.h>
33 #include <gnutls/gnutls.h>
34 
35 static CURL *curl;
36 
37 static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
38 {
39  const struct curl_tlssessioninfo *info;
40  unsigned int cert_list_size;
41  const gnutls_datum_t *chainp;
42  CURLcode res;
43 
44  (void)stream;
45  (void)ptr;
46 
48 
49  if(!res) {
50  switch(info->backend) {
52  /* info->internals is now the gnutls_session_t */
53  chainp = gnutls_certificate_get_peers(info->internals, &cert_list_size);
54  if((chainp) && (cert_list_size)) {
55  unsigned int i;
56 
57  for(i = 0; i < cert_list_size; i++) {
58  gnutls_x509_crt_t cert;
59  gnutls_datum_t dn;
60 
61  if(GNUTLS_E_SUCCESS == gnutls_x509_crt_init(&cert)) {
62  if(GNUTLS_E_SUCCESS ==
63  gnutls_x509_crt_import(cert, &chainp[i], GNUTLS_X509_FMT_DER)) {
64  if(GNUTLS_E_SUCCESS ==
65  gnutls_x509_crt_print(cert, GNUTLS_CRT_PRINT_FULL, &dn)) {
66  fprintf(stderr, "Certificate #%d: %.*s", i, dn.size, dn.data);
67 
68  gnutls_free(dn.data);
69  }
70  }
71 
72  gnutls_x509_crt_deinit(cert);
73  }
74  }
75  }
76  break;
78  default:
79  break;
80  }
81  }
82 
83  return size * nmemb;
84 }
85 
86 int main(void)
87 {
89 
90  curl = curl_easy_init();
91  if(curl) {
92  curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com/");
93 
94  curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, wrfu);
95 
96  curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
97  curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
98 
99  curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
100 
101  (void) curl_easy_perform(curl);
102 
104  }
105 
107 
108  return 0;
109 }
int main(void)
Definition: sessioninfo.c:86
UNITTEST_START char * ptr
Definition: unit1330.c:38
CURLcode
Definition: curl.h:454
static int res
#define curl_easy_setopt(handle, option, value)
Definition: typecheck-gcc.h:41
unsigned int i
Definition: unit1303.c:79
#define curl_easy_getinfo(handle, info, arg)
#define CURL_GLOBAL_DEFAULT
Definition: curl.h:2521
CURL_EXTERN CURL * curl_easy_init(void)
Definition: easy.c:343
CURL_EXTERN void curl_easy_cleanup(CURL *curl)
static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
Definition: sessioninfo.c:37
curl_sslbackend backend
Definition: curl.h:2425
CURL_EXTERN CURLcode curl_global_init(long flags)
curl_global_init() globally initializes curl given a bitwise set of the different features of what to...
Definition: easy.c:271
void CURL
Definition: curl.h:102
size_t size
Definition: unit1302.c:52
#define fprintf
Definition: curl_printf.h:41
CURL_EXTERN void curl_global_cleanup(void)
curl_global_cleanup() globally cleanups curl, uses the value of "init_flags" to determine what needs ...
Definition: easy.c:312
static CURL * curl
Definition: sessioninfo.c:35
void * internals
Definition: curl.h:2426
CURL_EXTERN CURLcode curl_easy_perform(CURL *curl)


rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:16