Linux环境下1v1 聊天程序(2)

//将从客户端接收到的信息再发回客户端
    if(send(new_fd,snd_data,strlen(snd_data),0)==-1)
    {
      perror("send");
     close(new_fd);
     exit(0);
 }
  }
close(new_fd);
 }
}
 close(sockfd);
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzwwdj.html