Data transfer powered by the native curl library
curl
package curl
Concerns
- curl: Data transfer powered by the native curl library
- native_curl: Binding of C libCurl which allow us to interact with network.
- curl: Data transfer powered by the native curl library
curl::native_curl
module native_curl
Binding of C libCurl which allow us to interact with network.
Introduces
- NativeCurlCallbacks: Interface for internal information callbacks methods
- NativeCurl: CURL Extern Type, reproduce CURL low level behaviors
- CURLCode: CURL Code binding and helpers
- CURLSList: Extern Type of the Linked list type of CURL
- CURLInfoSList: Reproduce Enum of available CURL SList information, used for NativeCurl.easy_getinfo
- CURLInfoLong: Reproduce Enum of available CURL Long information, used for NativeCurl.easy_getinfo
- CURLInfoDouble: Reproduce Enum of available CURL Double information, used for NativeCurl.easy_getinfo
- CURLInfoChars: Reproduce Enum of available CURL Chars information, used for NativeCurl.easy_getinfo
- CURLStatusCode: Reproduce Enum of HTTP Status Code
- CURLOption: Reproduce Enum of CURL Options usable, used for NativeCurl.easy_setopt
Redefines
- Collection: The root of the collection hierarchy.
- CString: C string
char *
curl::curl
module curl
Data transfer powered by the native curl library
Download or upload over HTTP with CurlHTTPRequest
and send emails with CurlMail
.
Introduces
- CurlRequest: CURL Request
- CurlResponse: Abstract Curl request response
- HeaderMap: Pseudo map associating
String
toString
for HTTP exchanges - CurlCallbacks: Callbacks Interface, allow you to manage in your way the different streams
- CurlResponseFailed: Failed Response Class returned when errors during configuration are raised
- Curl: Curl library handle, it is initialized and released with this class
- CurlHTTPRequest: HTTP request builder
- CurlMail: CURL Mail Request
- CurlResponseSuccessIntern: Success Abstract Response Success Class
- CurlResponseSuccess: Success Response Class of a basic response
- CurlFileResponseSuccess: Success Response Class of a downloaded File
Redefines
- Sys: The main class of the program.