加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Socket.cc 533 Bytes
一键复制 编辑 原始数据 按行查看 历史
///
/// @file Socket.cc
/// @author lemon(haohb13@gmail.com)
/// @date 2021-02-05 16:14:21
///
#include "Socket.hpp"
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
namespace wd
{
Socket::Socket()
{
_fd = ::socket(AF_INET, SOCK_STREAM, 0);
if(_fd < 0) {
perror("socket");
}
}
Socket::Socket(int fd)
: _fd(fd)
{}
Socket::~Socket()
{
// close(_fd); //I finnally find the problem
}
void Socket::shutdownWrite()
{
shutdown(_fd, SHUT_WR);
}
}//end of namespace wd
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化