提交 d5c85e93 authored 作者: Stefan Knoblich's avatar Stefan Knoblich

this one fixes the curl type mismatch warning in mod_xml_cdr

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8658 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 b69a34c7
......@@ -56,9 +56,9 @@ SWITCH_MODULE_DEFINITION(mod_xml_cdr, mod_xml_cdr_load, NULL, NULL);
* and the default curl activity is to print to stdout, something not as desirable
* so we have a dummy function here
*/
static void httpCallBack()
static size_t httpCallBack(char *buffer, size_t size, size_t nitems, void *outstream)
{
return;
return size * nitems;
}
static switch_status_t my_on_hangup(switch_core_session_t *session)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论