summaryrefslogtreecommitdiff
path: root/libs/cpp-httplib/example/benchmark.cc
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
committerAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
commit210404a73706993d197c1290d5a411394e176fbe (patch)
tree93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/cpp-httplib/example/benchmark.cc
parenta65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff)
remove unused lib files
Diffstat (limited to 'libs/cpp-httplib/example/benchmark.cc')
-rw-r--r--libs/cpp-httplib/example/benchmark.cc33
1 files changed, 0 insertions, 33 deletions
diff --git a/libs/cpp-httplib/example/benchmark.cc b/libs/cpp-httplib/example/benchmark.cc
deleted file mode 100644
index 433cc67..0000000
--- a/libs/cpp-httplib/example/benchmark.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <chrono>
-#include <httplib.h>
-#include <iostream>
-
-using namespace std;
-
-struct StopWatch {
- StopWatch(const string &label) : label_(label) {
- start_ = chrono::system_clock::now();
- }
- ~StopWatch() {
- auto end = chrono::system_clock::now();
- auto diff = end - start_;
- auto count = chrono::duration_cast<chrono::milliseconds>(diff).count();
- cout << label_ << ": " << count << " millisec." << endl;
- }
- string label_;
- chrono::system_clock::time_point start_;
-};
-
-int main(void) {
- string body(1024 * 5, 'a');
-
- httplib::Client cli("httpbin.org", 80);
-
- for (int i = 0; i < 3; i++) {
- StopWatch sw(to_string(i).c_str());
- auto res = cli.Post("/post", body, "application/octet-stream");
- assert(res->status == httplib::StatusCode::OK_200);
- }
-
- return 0;
-}