comparison Core/HttpServer/MongooseServer.cpp @ 2635:33c0b4da8cb2 jobs

integration mainline->jobs
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 25 May 2018 18:54:38 +0200
parents 2f3007bf0708 40c7926b75f8
children c7313e1f7644
comparison
equal deleted inserted replaced
2632:2406ae891747 2635:33c0b4da8cb2
995 995
996 if (!pimpl_->context_) 996 if (!pimpl_->context_)
997 { 997 {
998 throw OrthancException(ErrorCode_HttpPortInUse); 998 throw OrthancException(ErrorCode_HttpPortInUse);
999 } 999 }
1000
1001 LOG(WARNING) << "HTTP server listening on port: " << GetPortNumber()
1002 << " (HTTPS encryption is "
1003 << (IsSslEnabled() ? "enabled" : "disabled")
1004 << ", remote access is "
1005 << (IsRemoteAccessAllowed() ? "" : "not ")
1006 << "allowed)";
1000 } 1007 }
1001 } 1008 }
1002 1009
1003 void MongooseServer::Stop() 1010 void MongooseServer::Stop()
1004 { 1011 {