From 42feb7e8bee726e2d568572108fea964be70719b Mon Sep 17 00:00:00 2001 From: yhirose Date: Thu, 10 Nov 2022 08:27:30 -0500 Subject: [PATCH] Updated README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 316457c..f6db7c0 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ httplib::SSLServer svr("./cert.pem", "./key.pem"); // Client httplib::Client cli("https://localhost:1234"); // scheme + host httplib::SSLClient cli("localhost:1234"); // host +httplib::SSLClient cli("localhost", 1234); // host, port // Use your CA bundle cli.set_ca_cert_path("./ca-bundle.crt");