From 7d1517c732851af7fdd5e206a980d4cf3f7a23f6 Mon Sep 17 00:00:00 2001 From: jiansyuan Date: Tue, 23 Apr 2024 22:55:30 +0800 Subject: [PATCH] fix --- NIAHttpBOT/src/NIAHttpBOT.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NIAHttpBOT/src/NIAHttpBOT.cpp b/NIAHttpBOT/src/NIAHttpBOT.cpp index 7808ced..efeace9 100644 --- a/NIAHttpBOT/src/NIAHttpBOT.cpp +++ b/NIAHttpBOT/src/NIAHttpBOT.cpp @@ -63,6 +63,9 @@ If you have any problems with this project, please contact the authors. #endif void sslThread(){ + #ifndef WIN32 + return; + #endif httplib::SSLClient cli("localhost", 8080); }