We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1b31a commit ff5677aCopy full SHA for ff5677a
README.md
@@ -365,6 +365,27 @@ httplib::Client cli("http://localhost:8080");
365
httplib::Client cli("https://localhost");
366
```
367
368
+### Error code
369
+
370
+Here is the list of errors from `Result::error()`.
371
372
+```c++
373
+enum Error {
374
+ Success = 0,
375
+ Unknown,
376
+ Connection,
377
+ BindIPAddress,
378
+ Read,
379
+ Write,
380
+ ExceedRedirectCount,
381
+ Canceled,
382
+ SSLConnection,
383
+ SSLLoadingCerts,
384
+ SSLServerVerification,
385
+ UnsupportedMultipartBoundaryChars
386
+};
387
+```
388
389
### GET with HTTP headers
390
391
```c++
0 commit comments