gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 112/256: curl_global_sslset.3: show the struct and


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 112/256: curl_global_sslset.3: show the struct and enum too
Date: Fri, 06 Oct 2017 19:43:23 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit f7512d7becb43ff0b1a639e9b0732332bd1c9805
Author: Daniel Stenberg <address@hidden>
AuthorDate: Thu Aug 31 10:12:50 2017 +0200

    curl_global_sslset.3: show the struct and enum too
    
    ... so that users can actually write code based on the man page alone,
    not having to read the header file.
---
 docs/libcurl/curl_global_sslset.3 | 29 +++++++++++++++++++++++++----
 1 file changed, 25 insertions(+), 4 deletions(-)

diff --git a/docs/libcurl/curl_global_sslset.3 
b/docs/libcurl/curl_global_sslset.3
index d37e7a9fd..5e7a26359 100644
--- a/docs/libcurl/curl_global_sslset.3
+++ b/docs/libcurl/curl_global_sslset.3
@@ -24,10 +24,31 @@
 curl_global_sslset - Select SSL backend to use with libcurl
 .SH SYNOPSIS
 .B #include <curl/curl.h>
-.sp
-.BI "CURLsslset curl_global_sslset(curl_sslbackend " id ", const char *" name
-.BI ", curl_ssl_backend ***" avail ");"
-.ad
+.nf
+
+typedef struct {
+  curl_sslbackend id;
+  const char *name;
+} curl_ssl_backend;
+
+typedef enum {
+  CURLSSLBACKEND_NONE = 0,
+  CURLSSLBACKEND_OPENSSL = 1,
+  CURLSSLBACKEND_GNUTLS = 2,
+  CURLSSLBACKEND_NSS = 3,
+  CURLSSLBACKEND_GSKIT = 5,
+  CURLSSLBACKEND_POLARSSL = 6,
+  CURLSSLBACKEND_WOLFSSL = 7,
+  CURLSSLBACKEND_SCHANNEL = 8,
+  CURLSSLBACKEND_DARWINSSL = 9,
+  CURLSSLBACKEND_AXTLS = 10,
+  CURLSSLBACKEND_MBEDTLS = 11
+} curl_sslbackend;
+
+.B "CURLsslset curl_global_sslset(curl_sslbackend " id,
+.B "                              const char *" name,
+.B "                              curl_ssl_backend ***" avail ");"
+.fi
 .SH DESCRIPTION
 This function configures at runtime which SSL backend to use with
 libcurl. This function can only be used to select an SSL backend once, and it

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]