@@ -552,11 +552,10 @@ void* task_push_http_post_transfer_with_headers(const char *url,
552552 return task_push_http_transfer_generic (conn , url , mute , false, cb , user_data );
553553}
554554
555- void * task_push_http_transfer_with_content_ex (const char * url ,
555+ void * task_push_http_transfer_with_content (const char * url ,
556556 const char * method , const void * content , size_t content_len ,
557557 const char * content_type , bool mute , bool headers_accept_err ,
558- const char * headers ,
559- retro_task_callback_t cb , void * user_data )
558+ const char * headers , retro_task_callback_t cb , void * user_data )
560559{
561560 struct http_connection_t * conn ;
562561
@@ -576,13 +575,3 @@ void *task_push_http_transfer_with_content_ex(const char *url,
576575 return task_push_http_transfer_generic (conn , url , mute ,
577576 headers_accept_err , cb , user_data );
578577}
579-
580- void * task_push_http_transfer_with_content (const char * url ,
581- const char * method , const void * content , size_t content_len ,
582- const char * content_type , bool mute , const char * headers ,
583- retro_task_callback_t cb , void * user_data )
584- {
585- return task_push_http_transfer_with_content_ex (url , method , content ,
586- content_len , content_type , mute , false,
587- headers , cb , user_data );
588- }
0 commit comments