[Freeswitch-svn] [commit] r9369 - freeswitch/trunk/src/mod/languages/mod_spidermonkey_curl
Freeswitch SVN
anthm at freeswitch.org
Tue Aug 26 14:39:18 EDT 2008
Author: anthm
Date: Tue Aug 26 14:39:17 2008
New Revision: 9369
Modified:
freeswitch/trunk/src/mod/languages/mod_spidermonkey_curl/mod_spidermonkey_curl.c
Log:
add optional content-type arg
Modified: freeswitch/trunk/src/mod/languages/mod_spidermonkey_curl/mod_spidermonkey_curl.c
==============================================================================
--- freeswitch/trunk/src/mod/languages/mod_spidermonkey_curl/mod_spidermonkey_curl.c (original)
+++ freeswitch/trunk/src/mod/languages/mod_spidermonkey_curl/mod_spidermonkey_curl.c Tue Aug 26 14:39:17 2008
@@ -123,17 +123,12 @@
method = JS_GetStringBytes(JS_ValueToString(cx, argv[0]));
url = JS_GetStringBytes(JS_ValueToString(cx, argv[1]));
- if (argc > 2) {
- char *content_type = JS_GetStringBytes(JS_ValueToString(cx, argv[2]));
- snprintf(ct, sizeof(ct), "Content-Type: %s", content_type);
- }
-
co->curl_handle = curl_easy_init();
if (!strncasecmp(url, "https", 5)) {
curl_easy_setopt(co->curl_handle, CURLOPT_SSL_VERIFYPEER, 0);
curl_easy_setopt(co->curl_handle, CURLOPT_SSL_VERIFYHOST, 0);
}
- headers = curl_slist_append(headers, ct);
+
if (argc > 2) {
data = JS_GetStringBytes(JS_ValueToString(cx, argv[2]));
@@ -162,7 +157,12 @@
}
}
+ if (argc > 7) {
+ char *content_type = JS_GetStringBytes(JS_ValueToString(cx, argv[7]));
+ snprintf(ct, sizeof(ct), "Content-Type: %s", content_type);
+ }
+ headers = curl_slist_append(headers, ct);
curl_easy_setopt(co->curl_handle, CURLOPT_HTTPHEADER, headers);
More information about the Freeswitch-svn
mailing list