WebServer icon indicating copy to clipboard operation
WebServer copied to clipboard

C++ High Performance HTTP WebServer

Results 2 WebServer issues
Sort by recently updated
recently updated
newest added

`class MutexLockGuard : public noncopyable { public: explicit MutexLockGuard(MutexLock &mutex) : m_mutex(m_mutex) { m_mutex.lock(); } ~MutexLockGuard(){ m_mutex.unlock(); } private: MutexLock m_mutex; };` 首先,构造函数的mutex完全没用到,其次m_mutex无法被拷贝初始化,需要把m_mutex改为引用类型 各种错误,不知道怎么编译通过的

没有CMakeLists,txt,cmake .没法执行