免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1815 | 回复: 1
打印 上一主题 下一主题

关于socket的连接的客户的个数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-03-02 12:32 |只看该作者 |倒序浏览
我调试了一个程序,是阻塞模式的,多个客户连接到服务器都是成功的!!
但是,服务器只能接收第一个客户的信息,其他客户的信息服务器收不到,
但是其他客户给服务器发送信息又是正确的,想请各位大侠指教!

  1. 服务器程序
  2.   #include <stdio.h>;

  3. #include <stdlib.h>;

  4. #include <errno.h>;

  5. #include <string.h>;

  6. #include <sys/types.h>;

  7. #include <netinet/in.h>;

  8. #include <sys/socket.h>;

  9. #include <sys/wait.h>;

  10. #define MYPORT 3490                 /* 监听的端口 */

  11. #define BACKLOG 10                 /* listen的请求接收队列长度 */

  12.  

  13. void main() {

  14. int sockfd, new_fd;             /* 监听端口,数据端口 */

  15. struct sockaddr_in sa;         /* 自身的地址信息 */

  16. struct sockaddr_in their_addr; /* 连接对方的地址信息 */

  17. int sin_size;

  18.  

  19. if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {

  20. perror("socket");

  21. exit(1);

  22. }

  23. sa.sin_family = AF_INET;

  24. sa.sin_port = htons(MYPORT);         /* 网络字节顺序 */

  25. sa.sin_addr.s_addr = INADDR_ANY;     /* 自动填本机IP */

  26. bzero(&(sa.sin_zero), 8);             /* 其余部分置0 */

  27. if (bind(sockfd, (struct sockaddr *)&sa, sizeof(sa)) == -1) {

  28. perror("bind");

  29. exit(1);

  30. }

  31. if (listen(sockfd, BACKLOG) == -1) {

  32. perror("listen");

  33. exit(1);

  34. }

  35.  

  36. /* 主循环 */

  37. while(1) {

  38. sin_size = sizeof(struct sockaddr_in);

  39. new_fd = accept(sockfd, (struct sockaddr *)&their_addr, &sin_size))

  40. if (new_fd == -1) {

  41. perror("accept");

  42. continue;

  43. }

  44. printf(”Got connection from %s\n", inet_ntoa(their_addr.sin_addr));

  45. if (fork() == 0) {

  46. /* 子进程 */

  47. if (send(new_fd, "Hello, world!\ n", 14, 0) == -1)

  48. perror("send");

  49. close(new_fd);

  50. exit(0);

  51. }

  52. close(new_fd);

  53. /*清除所有子进程 */

  54. while(waitpid(-1,NULL,WNOHANG) >; 0);

  55. }

  56. }
  57. [\code]

复制代码
客户程序
#include <stdio.h>;

#include <stdlib.h>;

#include <errno.h>;

#include <string.h>;

#include <netdb.h>;

#include <sys/types.h>;

#include <netinet/in.h>;

#include <sys/socket.h>;

#define PORT 3490 /* Server的端口 */

#define MAXDATASIZE 100 /*一次可以读的最大字节数 */

 

int main(int argc, char *argv[])

{

int sockfd, numbytes;

char buf[MAXDATASIZE];

struct hostent *he; /* 主机信息 */

struct sockaddr_in their_addr; /* 对方地址信息 */

if (argc != 2) {

fprintf(stderr,"usage: client hostname\n";

exit(1);

}

 

/* get the host info */

if ((he=gethostbyname(argv[1])) == NULL) {

/* 注意:获取DNS信息时,显示出错需要用herror而不是perror */

herror("gethostbyname";

exit(1);

}

if ((sockfd=socket(AF_INET,SOCK_STREAM,0))==-1) {

perror("socket";

exit(1);

}

their_addr.sin_family = AF_INET;

their_addr.sin_port = htons(PORT); /* short, NBO */

their_addr.sin_addr = *((struct in_addr *)he->;h_addr);

bzero(&(their_addr.sin_zero), ; /* 其余部分设成0 */

if (connect(sockfd, (struct sockaddr *)&their_addr, sizeof(struct sockaddr)) == -1) {

perror("connect";

exit(1);

}

if ((numbytes=recv(sockfd,buf,MAXDATASIZE,0))==-1) {

perror("recv";

exit(1);

}

buf[numbytes] = '\0';

printf("Received: %s",buf);

close(sockfd);

return 0;

}

论坛徽章:
0
2 [报告]
发表于 2003-03-03 10:23 |只看该作者

关于socket的连接的客户的个数

子进程首先关闭监听套接字.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP