COPYING |
|
1088 |
curl.h |
If you have libcurl problems, all docs and details are found here:
https://curl.haxx.se/libcurl/
curl-library mailing list subscription and unsubscription web interface:
https://cool.haxx.se/mailman/listinfo/curl-library/
|
106315 |
curlver.h |
This header file contains nothing but libcurl version info, generated by
a script at release-time. This was made its own header file in 7.11.2 |
3040 |
easy.h |
NAME curl_easy_getinfo()
DESCRIPTION
Request internal information from the curl session with this function. The
third argument MUST be a pointer to a long, a pointer to a char * or a
pointer to a double (as the documentation describes elsewhere). The data
pointed to will be filled in accordingly and can be relied upon only if the
function returns CURLE_OK. This function is intended to get used *AFTER* a
performed transfer, all results from this function are undefined until the
transfer is completed.
|
3641 |
multi.h |
This is an "external" header file. Don't give away any internals here!
GOALS
o Enable a "pull" interface. The application that uses libcurl decides where
and when to ask libcurl to get/send data.
o Enable multiple simultaneous transfers in the same thread without making it
complicated for the application.
o Enable the application to select() on its own file descriptors and curl's
file descriptors simultaneous easily.
|
16211 |
system.h |
Try to keep one section per platform, compiler and architecture, otherwise,
if an existing section is reused for a different one and later on the
original is adjusted, probably the piggybacking one can be adversely
changed.
In order to differentiate between platforms/compilers/architectures use
only compiler built in predefined preprocessor symbols.
curl_off_t
----------
For any given platform/compiler curl_off_t must be typedef'ed to a 64-bit
wide signed integral data type. The width of this data type must remain
constant and independent of any possible large file support settings.
As an exception to the above, curl_off_t shall be typedef'ed to a 32-bit
wide signed integral data type if there is no 64-bit type.
As a general rule, curl_off_t shall not be mapped to off_t. This rule shall
only be violated if off_t is the only 64-bit data type available and the
size of off_t is independent of large file support settings. Keep your
build on the safe side avoiding an off_t gating. If you have a 64-bit
off_t then take for sure that another 64-bit data type exists, dig deeper
and you will find it.
|
18512 |
typecheck-gcc.h |
wraps curl_easy_setopt() with typechecking |
43543 |
urlapi.h |
the error codes for the URL API |
4285 |