1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00
This commit is contained in:
Daniel Stenberg 2001-04-18 14:05:44 +00:00
parent 6ea51f3cd7
commit e22fb3e7bc

View File

@ -82,9 +82,18 @@ JNIEXPORT jint JNICALL Java_CurlGlue_jni_1setopt__III
(JNIEnv *java, jobject myself, jint jcurl, jint option, jint value) (JNIEnv *java, jobject myself, jint jcurl, jint option, jint value)
{ {
void *handle = (void *)((struct javacurl*)jcurl)->libcurl; void *handle = (void *)((struct javacurl*)jcurl)->libcurl;
CURLoption opt = (CURLoption)option;
puts("setopt int + int"); puts("setopt int + int");
switch(opt) {
case CURLOPT_FILE:
/* silently ignored, we don't need user-specified callback data when
we have an object, and besides the CURLOPT_FILE is not exported
to the java interface */
return 0;
}
return (jint)curl_easy_setopt(handle, (CURLoption)option, value); return (jint)curl_easy_setopt(handle, (CURLoption)option, value);
} }