代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <pthread.h>
static int clifd[256];
static int cl_len=0;
void* pth_tpc(void* str)
{
int clifd1=*(int*)str;
clifd[cl_len++]=clifd1;
char buf[1024] = {};
for(;;)
{
printf("read:");
read(clifd1,buf,sizeof(buf));
printf("%s\n",buf);
if(0 == strcmp("quit",buf))
{
close(clifd1);
return NULL;
}
for(int j=0;j<cl_len;j++)
{
if(clifd1!=clifd[j])
{
write(clifd[j],buf,strlen(buf)+1);
}
}
}
}
int main()
{
printf("服务器创建socket...\n");
int sockfd = socket(AF_INET,SOCK_STREAM,0);
if(0 > sockfd)
{
perror("socket");
return -1;
}
printf("准备地址...\n");
struct sockaddr_in addr = {};
addr.sin_family = AF_INET;
addr.sin_port = htons(6888);
addr.sin_addr.s_addr = inet_addr("172.19.107.0");
socklen_t len = sizeof(addr);
printf("绑定socket与地址...\n");
if(bind(sockfd,(struct sockaddr*)&addr,len))
{
perror("bind");
return -1;
}
printf("设置监听...\n");
if(listen(sockfd,5))
{
perror("listen");
return -1;
}
printf("等待客户端连接...\n");
for(;;)
{
struct sockaddr_in addrcli = {};
int clifd = accept(sockfd,(struct sockaddr*)&addrcli,&len);
if(0 > clifd)
{
perror("accept");
continue;
}
pthread_t pid ;
pthread_create(&pid,NULL,pth_tpc,&clifd);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。