From 29ce4c1526b9da6a14018b8ecdb18d55b75cc3df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=BE=E8=81=AA?= Date: Thu, 16 Nov 2023 14:54:03 +0800 Subject: [PATCH] update ssl --- runtime/websocket/bin/funasr-wss-server-2pass.cpp | 2 +- runtime/websocket/bin/funasr-wss-server.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/websocket/bin/funasr-wss-server-2pass.cpp b/runtime/websocket/bin/funasr-wss-server-2pass.cpp index 258d537be..4b425338c 100644 --- a/runtime/websocket/bin/funasr-wss-server-2pass.cpp +++ b/runtime/websocket/bin/funasr-wss-server-2pass.cpp @@ -439,7 +439,7 @@ int main(int argc, char* argv[]) { funasr::ExtractHws(hotword_path, hws_map_); bool is_ssl = false; - if (!s_certfile.empty()) { + if (!s_certfile.empty() && access(s_certfile.c_str(), F_OK) == 0) { is_ssl = true; } diff --git a/runtime/websocket/bin/funasr-wss-server.cpp b/runtime/websocket/bin/funasr-wss-server.cpp index 8d4cc997c..2732add39 100644 --- a/runtime/websocket/bin/funasr-wss-server.cpp +++ b/runtime/websocket/bin/funasr-wss-server.cpp @@ -419,7 +419,7 @@ int main(int argc, char* argv[]) { funasr::ExtractHws(hotword_path, hws_map_); bool is_ssl = false; - if (!s_certfile.empty()) { + if (!s_certfile.empty() && access(s_certfile.c_str(), F_OK) == 0) { is_ssl = true; }