1
0
mirror of synced 2025-12-18 16:34:09 +03:00

Replace httpbin.org with httpcan.org (#2300)

* Replace httpbin.org with httpcan.org

* Fix DigestAuthTest.FromHTTPWatch_Online test
This commit is contained in:
Jean-Francois Simoneau
2025-12-13 23:52:05 -05:00
committed by GitHub
parent 681d388247
commit b7097f1386
4 changed files with 88 additions and 37 deletions

View File

@@ -21,7 +21,7 @@ struct StopWatch {
int main(void) {
string body(1024 * 5, 'a');
httplib::Client cli("httpbin.org", 80);
httplib::Client cli("httpcan.org", 80);
for (int i = 0; i < 3; i++) {
StopWatch sw(to_string(i).c_str());