1
0
mirror of synced 2025-04-26 14:28:51 +03:00
This commit is contained in:
yhirose 2017-08-28 09:33:27 -04:00
parent 0b00f3fba0
commit d74efc23ed

View File

@ -60,7 +60,7 @@ SSL support is available with `CPPHTTPLIB_OPENSSL_SUPPORT`. `libssl` and `libcry
```c++
#define CPPHTTPLIB_OPENSSL_SUPPORT
SSLServer svr("./key.pem", "./cert.pem");
SSLServer svr("./cert.pem", "./key.pem");
SSLClient cli("localhost", 8080);
```