diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
| commit | 210404a73706993d197c1290d5a411394e176fbe (patch) | |
| tree | 93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/cpp-httplib/example/client.cc | |
| parent | a65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff) | |
remove unused lib files
Diffstat (limited to 'libs/cpp-httplib/example/client.cc')
| -rw-r--r-- | libs/cpp-httplib/example/client.cc | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/libs/cpp-httplib/example/client.cc b/libs/cpp-httplib/example/client.cc deleted file mode 100644 index a9b0fc0..0000000 --- a/libs/cpp-httplib/example/client.cc +++ /dev/null @@ -1,41 +0,0 @@ -// -// client.cc -// -// Copyright (c) 2019 Yuji Hirose. All rights reserved. -// MIT License -// - -#include <httplib.h> -#include <iostream> - -#define CA_CERT_FILE "./ca-bundle.crt" - -using namespace std; - -int main(void) { -#ifdef CPPHTTPLIB_OPENSSL_SUPPORT - httplib::SSLClient cli("localhost", 8080); - // httplib::SSLClient cli("google.com"); - // httplib::SSLClient cli("www.youtube.com"); - cli.set_ca_cert_path(CA_CERT_FILE); - cli.enable_server_certificate_verification(true); -#else - httplib::Client cli("localhost", 8080); -#endif - - if (auto res = cli.Get("/hi")) { - cout << res->status << endl; - cout << res->get_header_value("Content-Type") << endl; - cout << res->body << endl; - } else { - cout << "error code: " << res.error() << std::endl; -#ifdef CPPHTTPLIB_OPENSSL_SUPPORT - auto result = cli.get_openssl_verify_result(); - if (result) { - cout << "verify error: " << X509_verify_cert_error_string(result) << endl; - } -#endif - } - - return 0; -} |
