]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs/examples/protofeats.c: Outputs all protocols and features
authorDaniel Stenberg <daniel@haxx.se>
Mon, 17 Apr 2023 21:40:22 +0000 (23:40 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 18 Apr 2023 06:10:27 +0000 (08:10 +0200)
Showing off one way to get to char pointer arrays of info returned by
curl_version_info()

Closes #10991

docs/examples/Makefile.inc
docs/examples/protofeats.c [new file with mode: 0644]

index 9f25f980f65048dffd55112ee51ea84a7294715d..7e0d69c90da0f77d8878a61975cd36f187da975c 100644 (file)
@@ -97,6 +97,7 @@ check_PROGRAMS = \
   postit2 \
   postit2-formadd \
   progressfunc \
+  protofeats \
   resolve \
   sendrecv \
   sepheaders \
diff --git a/docs/examples/protofeats.c b/docs/examples/protofeats.c
new file mode 100644 (file)
index 0000000..3e76221
--- /dev/null
@@ -0,0 +1,52 @@
+/***************************************************************************
+ *                                  _   _ ____  _
+ *  Project                     ___| | | |  _ \| |
+ *                             / __| | | | |_) | |
+ *                            | (__| |_| |  _ <| |___
+ *                             \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * This software is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at https://curl.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * SPDX-License-Identifier: curl
+ *
+ ***************************************************************************/
+/* <DESC>
+ * Outputs all protocols and features supported
+ * </DESC>
+ */
+#include <stdio.h>
+#include <curl/curl.h>
+
+#if !CURL_AT_LEAST_VERSION(7,87,0)
+#error "too old libcurl"
+#endif
+
+int main(void)
+{
+  curl_version_info_data *ver;
+  const char *const *ptr;
+
+  curl_global_init(CURL_GLOBAL_ALL);
+
+  ver = curl_version_info(CURLVERSION_NOW);
+  printf("Protocols:\n");
+  for(ptr = ver->protocols; *ptr; ++ptr)
+    printf("  %s\n", *ptr);
+  printf("Features:\n");
+  for(ptr = ver->feature_names; *ptr; ++ptr)
+    printf("  %s\n", *ptr);
+
+  curl_global_cleanup();
+  return 0;
+}