- 论坛徽章:
- 0
|
今天看了前几天的老程序。问题还没解决。
连续发送多行字符串,如果我输入的客户端有多行需要发送
(1)每发送一行就sleep(1),那么服务器端可以把每行都接收
(2)如果我客户端不用sleep(1),这服务器端只能隔行接收。
我要如何处理比较好?
(现在我客户端每行发送两次,服务器可以正常接收)
客户端如下:
while(1)
43 {
44 printf("Please input information to send\n");
45 scanf("%s",&sendbuf);
46 printf("your iunput information is %s. \n",sendbuf);
47 if(strcmp(sendbuf,"exit")==0)
48 {
49 close(sockfd);
50 return (0);
51 }
52 send(sockfd,sendbuf,LENGTH,0);
53 }
|
服务器端如下
while(strcmp(recvbuf,"exit")!=0)
76 {
77 size=recv(nsockfd,recvbuf,LENGTH,0);
78 if(size==0)
79 exit (-1);
80 printf ("OK: \t Receviced string is: %s \n", recvbuf);
} |
|
|