加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsocket.h 782 Bytes
一键复制 编辑 原始数据 按行查看 历史
肉肉 提交于 2016-03-12 23:00 . no commit message
#ifndef _TLIB_TSOCKET_H_
#define _TLIB_TSOCKET_H_
#include "tnocopyable.h"
namespace tlib
{
class TSocket: TNoCopyable
{
private:
TSocket();
virtual ~TSocket();
public:
static bool EnvInit();
static bool EnvFree();
static int Send(int fd, char* buff, int len);
static int Recv(int fd, char* buff, int len);
static int Create();
static int Bind(int fd, char* host, int port);
static int Listen(int fd, int backlog);
static int Accept(int fd);
static int Connect(int fd, char* host, int port);
static void Close(int fd);
static bool SetNonBlock(int fd, bool on);
static bool SetTcpDelay(int fd, bool on);
static bool SetReuseAddr(int fd, bool on);
static bool SetReusePort(int fd, bool on);
static bool SetKeepAlive(int fd, bool on);
};
}
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化