comparison Core/HttpServer/MongooseServer.cpp @ 1486:f967bdf8534e

refactoring to Logging.h
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Aug 2015 10:01:31 +0200
parents 8dc80ba768aa
children 4f8c8ef114db
comparison
equal deleted inserted replaced
1485:27661b33f624 1486:f967bdf8534e
33 // http://en.highscore.de/cpp/boost/stringhandling.html 33 // http://en.highscore.de/cpp/boost/stringhandling.html
34 34
35 #include "../PrecompiledHeaders.h" 35 #include "../PrecompiledHeaders.h"
36 #include "MongooseServer.h" 36 #include "MongooseServer.h"
37 37
38 #include "../Logging.h"
39 #include "../OrthancException.h"
40 #include "../ChunkedBuffer.h"
41 #include "HttpToolbox.h"
42 #include "mongoose.h"
43
38 #include <algorithm> 44 #include <algorithm>
39 #include <string.h> 45 #include <string.h>
40 #include <boost/lexical_cast.hpp> 46 #include <boost/lexical_cast.hpp>
41 #include <boost/algorithm/string.hpp> 47 #include <boost/algorithm/string.hpp>
42 #include <iostream> 48 #include <iostream>
43 #include <string.h> 49 #include <string.h>
44 #include <stdio.h> 50 #include <stdio.h>
45 #include <boost/thread.hpp> 51 #include <boost/thread.hpp>
46 #include <glog/logging.h>
47
48 #include "../OrthancException.h"
49 #include "../ChunkedBuffer.h"
50 #include "HttpToolbox.h"
51 #include "mongoose.h"
52 52
53 #if ORTHANC_SSL_ENABLED == 1 53 #if ORTHANC_SSL_ENABLED == 1
54 #include <openssl/opensslv.h> 54 #include <openssl/opensslv.h>
55 #endif 55 #endif
56 56