From d832d48ea5cccd423c45d61719937c90d4ad9129 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Thu, 11 May 2023 11:34:21 +0200 Subject: [PATCH] Do not build EchoServer with SSL --- examples/EchoServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/EchoServer.cpp b/examples/EchoServer.cpp index 928160b..1e73416 100644 --- a/examples/EchoServer.cpp +++ b/examples/EchoServer.cpp @@ -12,7 +12,7 @@ int main() { /* Keep in mind that uWS::SSLApp({options}) is the same as uWS::App() when compiled without SSL support. * You may swap to using uWS:App() if you don't need SSL */ - uWS::SSLApp({ + uWS::App({ /* There are example certificates in uWebSockets.js repo */ .key_file_name = "misc/key.pem", .cert_file_name = "misc/cert.pem",