Loading docs/examples/fopen.c +0 −5 Original line number Diff line number Diff line Loading @@ -51,11 +51,6 @@ #include <curl/curl.h> #if (LIBCURL_VERSION_NUM < 0x070907) #error "too old libcurl version, get the latest!" #endif enum fcurl_type_e { CFTYPE_NONE=0, CFTYPE_FILE=1, CFTYPE_CURL=2 }; struct fcurl_data Loading docs/examples/post-callback.c +0 −10 Original line number Diff line number Diff line Loading @@ -10,21 +10,11 @@ * An example source code that issues a HTTP POST and we provide the actual * data through a read callback. * * Please be aware of the fact that the size of the posted data MUST be * specified before the transfer is being made (with CURLOPT_POSTFIELDSIZE). * This requirement will change when libcurl starts supporting chunked-encoded * sends. * * This example requires libcurl 7.9.6 or later. */ #include <stdio.h> #include <string.h> #include <curl/curl.h> #if LIBCURL_VERSION_NUM < 0x070906 #error this example source requires libcurl 7.9.6 or newer #endif char data[]="this is what we post to the silly web server"; struct WriteThis { Loading Loading
docs/examples/fopen.c +0 −5 Original line number Diff line number Diff line Loading @@ -51,11 +51,6 @@ #include <curl/curl.h> #if (LIBCURL_VERSION_NUM < 0x070907) #error "too old libcurl version, get the latest!" #endif enum fcurl_type_e { CFTYPE_NONE=0, CFTYPE_FILE=1, CFTYPE_CURL=2 }; struct fcurl_data Loading
docs/examples/post-callback.c +0 −10 Original line number Diff line number Diff line Loading @@ -10,21 +10,11 @@ * An example source code that issues a HTTP POST and we provide the actual * data through a read callback. * * Please be aware of the fact that the size of the posted data MUST be * specified before the transfer is being made (with CURLOPT_POSTFIELDSIZE). * This requirement will change when libcurl starts supporting chunked-encoded * sends. * * This example requires libcurl 7.9.6 or later. */ #include <stdio.h> #include <string.h> #include <curl/curl.h> #if LIBCURL_VERSION_NUM < 0x070906 #error this example source requires libcurl 7.9.6 or newer #endif char data[]="this is what we post to the silly web server"; struct WriteThis { Loading