服务器基于C++开发
文章平均质量分 73
线程,进程,多线程,线程池,epoll封装
ggj的球球
技术没有极限
展开
-
C++开发服务器2
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 内容总结 服务器升级版,获取linux qt客户端传来的信息,并拆包和分别打印出来账号密码。并发包给客户端 #include <stdlib.h> #include <errno.h> #include <sys/types.h> #include <sys/socket.h> #include <string.h> #include <sys/socket.h> #i原创 2021-12-12 22:56:45 · 763 阅读 · 0 评论 -
服务器开发信号量的使用
C++服务器开发 首先搭建VS2019的环境 因为在linux下运行,所以要将windows上与linux的端口和ip地址连接起来 要在项目属性中添加 完成后进入服务器开发, 线程和信号量的使用 边读边写 #include <stdio.h> #include <pthread.h> #include <semaphore.h> static sem_t sem; static int flag = 0; static char buff[32];.原创 2021-12-10 13:22:10 · 1092 阅读 · 0 评论 -
C++服务器开发1
1服务器开发代码 #include<sys/socket.h> #include<sys/types.h> #include<string.h> #include<errno.h> #include<stdio.h> #include<stdlib.h> #include<netinet/in.h> #include<arpa/inet.h> #include<unistd.h> /* socket原创 2021-12-10 23:54:23 · 1246 阅读 · 0 评论