From 543ff38d42156f14791b0c8827c4d4ec98af3d60 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 25 Aug 2023 09:46:00 +0200 Subject: [PATCH] index: initial import from the live site --- index.html | 158 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..8cc0dc2 --- /dev/null +++ b/index.html @@ -0,0 +1,158 @@ + + everything on curl development + + + + +
+

curl development

+ "everything curl"
+ curl.se +
+

+

+ +
+

development with curl

+
+$ curl https://example.com/
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
+<html><head>
+<title>301 Moved Permanently</title>
+</head><body>
+
+ +
    +
  1. Command line tool basics +
  2. How to HTTP with the curl tool +
  3. Scripting browser-like tasks +
+ +
+
+

development with libcurl

+
+  curl = curl_easy_init();
+  if(curl) {
+    curl_easy_setopt(curl, CURLOPT_URL, "https://curl.se");
+    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
+
+    res = curl_easy_perform(curl);
+    curl_easy_cleanup(curl);
+  }
+
+
    +
  1. libcurl basics +
  2. driving transfers with libcurl +
  3. HTTP with libcurl +
+ +
+ +
+

development of curl

+
+$ ./configure
+$ make
+$ make install
+
+
    +
  1. what is the curl project? +
  2. the curl license +
  3. curl source code +
+ +
+ +
+

development of libcurl

+
+$ ./configure
+$ make
+$ make install
+
+
    +
  1. build from source +
  2. libcurl internals +
  3. contribute +
+
+