mirror of
https://github.com/lwthiker/curl-impersonate.git
synced 2025-08-09 13:19:37 +00:00

Building curl-impersonate with Chrome impersonation requires a different compilation and a different set of patches which may conflict with the Firefox impersonation. Therefore we will treat them a separate builds. All chrome related files were moved to the chrome/ directory.
9 lines
379 B
Diff
9 lines
379 B
Diff
--- curl-7.81.0-original/lib/multi.c 2022-01-03 18:36:46.000000000 +0200
|
|
+++ curl-7.81.0/lib/multi.c 2022-02-18 22:43:54.939227658 +0200
|
|
@@ -395,3 +395,4 @@
|
|
multi->maxconnects = -1;
|
|
- multi->max_concurrent_streams = 100;
|
|
+ /* curl-impersonate: Use 1000 concurrent streams like Chrome. */
|
|
+ multi->max_concurrent_streams = 1000;
|
|
multi->ipv6_works = Curl_ipv6works(NULL);
|