Package | Description |
---|---|
com.caucho.quercus.lib.curl |
Modifier and Type | Method and Description |
---|---|
CurlResource |
CurlResource.clone()
Returns a copy of this resource.
|
static CurlResource |
CurlModule.curl_copy_handle(Env env,
CurlResource curl)
Returns a copy of this resource.
|
static CurlResource |
CurlModule.curl_init(Env env,
java.lang.String url)
Returns a cURL handle.
|
protected CurlResource |
CurlHttpRequest.getCurlResource() |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<CurlResource> |
CurlMultiResource.getCurlList() |
Modifier and Type | Method and Description |
---|---|
void |
CurlMultiResource.addCurl(CurlResource curl) |
void |
CurlHttpConnection.connect(CurlResource curl)
Connects to the server.
|
void |
HttpsConnection.connect(CurlResource curl)
Connects to the server.
|
static CurlHttpConnection |
CurlHttpConnection.createConnection(java.net.URL url,
java.lang.String username,
java.lang.String password,
CurlResource curl) |
static CurlHttpConnection |
CurlHttpConnection.createConnection(java.net.URL url,
java.lang.String username,
java.lang.String password,
CurlResource curl,
java.net.URL proxyURL,
java.lang.String proxyUsername,
java.lang.String proxyPassword,
java.lang.String proxyType) |
static void |
CurlModule.curl_close(Env env,
CurlResource curl)
Closes this cURL object.
|
static CurlResource |
CurlModule.curl_copy_handle(Env env,
CurlResource curl)
Returns a copy of this resource.
|
static Value |
CurlModule.curl_errno(Env env,
CurlResource curl)
Returns the error code from the last operation.
|
static Value |
CurlModule.curl_error(Env env,
CurlResource curl)
Returns the error string from the last operation.
|
static Value |
CurlModule.curl_exec(Env env,
CurlResource curl) |
static Value |
CurlModule.curl_getinfo(Env env,
CurlResource curl,
Value option)
Returns information about the last request.
|
static int |
CurlModule.curl_multi_add_handle(Env env,
CurlMultiResource multi,
CurlResource curl)
int curl_multi_add_handle ( resource $mh , resource $ch )
|
static Value |
CurlModule.curl_multi_getcontent(Env env,
CurlResource curl)
string curl_multi_getcontent ( resource $ch )
|
static int |
CurlModule.curl_multi_remove_handle(Env env,
CurlMultiResource multi,
CurlResource curl)
int curl_multi_remove_handle ( resource $mh , resource $ch )
|
static BooleanValue |
CurlModule.curl_setopt_array(Env env,
CurlResource curl,
ArrayValue options)
Sets an array of options.
|
static BooleanValue |
CurlModule.curl_setopt(Env env,
CurlResource curl,
int option,
Value value)
Sets a cURL option.
|
static CurlHttpRequest |
CurlHttpRequest.getRequest(CurlResource curl)
Returns a HttpRequest specific to the Http request method.
|
protected void |
CurlHttpConnection.init(CurlResource curl) |
protected void |
HttpsConnection.init(CurlResource curl) |
void |
CurlMultiResource.removeCurl(CurlResource curl) |
Constructor and Description |
---|
CurlHttpRequest(CurlResource curlResource) |
HttpGetRequest(CurlResource curlResource) |
HttpPostRequest(CurlResource curlResource) |
HttpPutRequest(CurlResource curlResource) |
UserBody(Env env,
CurlResource curl,
Callable callback,
BinaryInput file,
long length) |