File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ static zend_object *curl_clone_obj(zend_object *object) {
369
369
370
370
clone_object = curl_create_object (curl_ce);
371
371
clone_ch = curl_from_obj (clone_object);
372
- init_curl_handle (clone_ch);
372
+ swoole_curl_init_handle (clone_ch);
373
373
374
374
ch = curl_from_obj (object);
375
375
cp = curl_easy_duphandle (ch->cp );
@@ -863,7 +863,7 @@ php_curl *init_curl_handle_into_zval(zval *curl) {
863
863
object_init_ex (curl, swoole_coroutine_curl_handle_ce);
864
864
ch = Z_CURL_P (curl);
865
865
866
- init_curl_handle (ch);
866
+ swoole_curl_init_handle (ch);
867
867
868
868
return ch;
869
869
}
Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ static int _php_server_push_callback(
509
509
510
510
parent = Z_CURL_P (pz_parent_ch);
511
511
512
- ch = init_curl_handle_into_zval (&pz_ch);
512
+ ch = swoole_curl_init_handle_into_zval (&pz_ch);
513
513
ch->cp = easy;
514
514
swoole_setup_easy_copy_handlers (ch, parent);
515
515
You can’t perform that action at this time.
0 commit comments