server : fix the log message when using SSL (#23393)

When llama-server is started with SSL key and cert, the log says that it
listens on http instead of https. This patch fixes this.
This commit is contained in:
Radoslav Gerganov
2026-05-27 08:06:30 +03:00
committed by GitHub
parent b4c0549a49
commit 7085492c6f
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -74,6 +74,7 @@ struct server_http_context {
std::string path_prefix;
std::string hostname;
int port;
bool is_ssl = false;
server_http_context();
~server_http_context();