1 Star 0 Fork 1

taozier/roughserver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Server.h 717 Bytes
一键复制 编辑 原始数据 按行查看 历史
taozier 提交于 2020-06-07 18:33 . update
#pragma once
#include "noncopyable.h"
#include "EventLoop.h"
#include <map>
#include <string.h>
#include <memory>
class Channel;
class EventLoopThreadPool;
class Server : noncopyable
{
public:
Server(EventLoop *baseLoop, int numThread, int port);
~Server();
EventLoop *getBaseLoop() const { return baseLoop_; }
void start();
void acceptNewConn();
void modEpollfdEvent() { baseLoop_->modfdEvent(acceptChannel_); }
private:
bool start_;
EventLoop *baseLoop_;
int numThread_;
int port_;
std::unique_ptr<EventLoopThreadPool> eventLoopThreadPool_;
int listenfd_;
std::shared_ptr<Channel> acceptChannel_;
int nullfd_;
//static const int MAXFDS = 100000;
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/taozier/roughserver.git
git@gitee.com:taozier/roughserver.git
taozier
roughserver
roughserver
master

搜索帮助