-
Notifications
You must be signed in to change notification settings - Fork 1
curl
cyclone-scheme edited this page Jul 6, 2021
·
4 revisions
Content automatically generated. Contributions from the community are very welcomed at the bottom of this file.
- Intro
- Dependencies
- Test dependencies
- Foreign dependencies
- API
- Examples
- Author(s)
- Maintainer(s)
- Version
- License
- Tags
Cyclone Scheme bindings for the cURL library.
None
None
None
Initialize cURL with the given flags integer value.
This function is only required if curl-easy-init
is not called.
Initialize cURL with default options and return a Cyclone Opaque object that maybe used for subsequent calls.
Cleans up a cURL object initialized via easy init.
Set option, with given parameter param
, on the cURL easy handle opq
Perform cURL request using the given easy handle stored in opq
.
Returns the cURL version as a string.
(import (cyclone curl)
(scheme base))
(define curl (curl-easy-init))
(curl-easy-setopt curl CURLOPT_URL "http://example.com")
(curl-easy-perform curl)
(curl-easy-cleanup curl)
Justin Ethier
Justin Ethier
"0.2.0"
MIT
networking web http