Karry Wang  

2013年7月19日

摘要: 1 for(;;){ 2 socklen_t len = sizeof(client_address); 3 connfd = accept(listenfd, (struct sockaddr *)&client_address, &len); 4 if(connfd < 0){ 5 printf("accept error: %s\n", strerror(errno)); 6 } 7 printf("server get connection from %s\n", inet_nto... 阅读全文
posted @ 2013-07-19 10:02 Karry Wang 阅读(4264) 评论(0) 推荐(0) 编辑