1 Star 3 Fork 1

pedro/net-advanced

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
pedro 提交于 2021-04-12 14:26 . 添加阻塞式多线程模型
#include "common.h"
int main(int argc, char const *argv[])
{
int port = 3000;
int listen_fd = tcp_server_listen(port);
struct sockaddr_in client;
socklen_t clilen;
printf("listening at localhost:%d\n", port);
// 循环处理请求
for (;;)
{
clilen = sizeof(client);
int connfd = accept(listen_fd, (struct sockaddr *)&client, &clilen);
char buf[20] = "Hello World!";
write(connfd, buf, 20);
char buffer[512];
readn(connfd, buffer, 512);
printf("received: %s\n", buffer);
close(connfd);
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/gaopedro/net-advanced.git
git@gitee.com:gaopedro/net-advanced.git
gaopedro
net-advanced
net-advanced
master

搜索帮助