comparison OrthancServer/DicomProtocol/DicomServer.cpp @ 656:08eca5d86aad

fixes to cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 04 Nov 2013 11:19:31 +0100
parents 012b63028085
children f0232774b913
comparison
equal deleted inserted replaced
655:93adc693cc60 656:08eca5d86aad
190 LOG(ERROR) << "Error while dropping the network: " << cond.text(); 190 LOG(ERROR) << "Error while dropping the network: " << cond.text();
191 } 191 }
192 } 192 }
193 193
194 194
195 DicomServer::DicomServer() : pimpl_(new PImpl) 195 DicomServer::DicomServer() :
196 { 196 pimpl_(new PImpl),
197 aet_ = "ANY-SCP"; 197 aet_("ANY-SCP")
198 {
198 port_ = 104; 199 port_ = 104;
199 findRequestHandlerFactory_ = NULL; 200 findRequestHandlerFactory_ = NULL;
200 moveRequestHandlerFactory_ = NULL; 201 moveRequestHandlerFactory_ = NULL;
201 storeRequestHandlerFactory_ = NULL; 202 storeRequestHandlerFactory_ = NULL;
202 applicationEntityFilter_ = NULL; 203 applicationEntityFilter_ = NULL;
203 checkCalledAet_ = true; 204 checkCalledAet_ = true;
204 clientTimeout_ = 30; 205 clientTimeout_ = 30;
205 isThreaded_ = true; 206 isThreaded_ = true;
207 continue_ = false;
208 started_ = false;
206 } 209 }
207 210
208 DicomServer::~DicomServer() 211 DicomServer::~DicomServer()
209 { 212 {
210 Stop(); 213 Stop();