mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Update README.md (#1332)
Update error list. Introduce `httplib::to_string` in the example code.
This commit is contained in:
parent
f0eb55b327
commit
b1cc24b795
1 changed files with 4 additions and 2 deletions
|
@ -443,7 +443,7 @@ int main(void)
|
|||
}
|
||||
} else {
|
||||
auto err = res.error();
|
||||
...
|
||||
std::cout << "HTTP error: " << httplib::to_string(err) << std::endl;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -476,7 +476,9 @@ enum Error {
|
|||
SSLConnection,
|
||||
SSLLoadingCerts,
|
||||
SSLServerVerification,
|
||||
UnsupportedMultipartBoundaryChars
|
||||
UnsupportedMultipartBoundaryChars,
|
||||
Compression,
|
||||
ConnectionTimeout,
|
||||
};
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue