免费注册 查看新帖 |

Chinaunix

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

看看socket编程问题出在哪里 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-29 08:08 |只看该作者 |倒序浏览
小弟现在学习Socket编程。打算实现一个server.c接受客户端的连接。从客户端接收到的字符串打印出来。客户端一直接收用户的输入,并且把字符串发送到服务器端上。
    但是服务器端运行到打印:“Now The server receiver client information.”这句话后一直不能显示客户端发送的字符串。
    期待各位解答
   

    server.c代码如下
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/wait.h>
#include <sys/socket.h>
                                 
#define PORT 5000                      // The port which is communicate with server

#define BACKLOG 10
#define LENGTH 512                     // Buffer length                                                                                 

int main ()
{   int sockfd;                        // Socket file descriptor

    int nsockfd;                       // New Socket file descriptor

    int num;
    int size;
    int sin_size;                      // to store struct size

  //  char sdbuf[LENGTH];                // Send buffer

    char recvbuf[LENGTH];
    struct sockaddr_in addr_local;     
    struct sockaddr_in addr_remote;   
    char sendstr[16]= {"123456789 abcde"};   
               
    /* Get the Socket file descriptor */  
    if( (sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1 )  
    {   
        printf ("ERROR: Failed to obtain Socket Despcritor.\n");
        return (0);
    }
    else
    {
        printf ("OK: Obtain Socket Despcritor sucessfully.\n");
    }
   
    /* Fill the local socket address struct */
    bzero(&addr_local,sizeof(addr_local));   
    addr_local.sin_family = AF_INET;           // Protocol Family

    addr_local.sin_port = htons(PORT);         // Port number

    addr_local.sin_addr.s_addr  = htons(INADDR_ANY);  // AutoFill local address


    if( bind(sockfd, (struct sockaddr*)&addr_local, sizeof(struct sockaddr)) == -1 )
    {  
          printf ("ERROR: Failed to bind Port %d.\n",PORT);
        return (0);
    }
    else
    {
        printf("OK: Bind the Port %d sucessfully.\n",PORT);
    }
   
    /*  Listen remote connect/calling */
    if(listen(sockfd,BACKLOG) == -1)   
    {  
        printf ("ERROR: Failed to listen Port %d.\n", PORT);
        return (0);
    }
    else
    {
        printf ("OK: Listening the Port %d sucessfully.\n", PORT);
    }
   
    while(1)
    {  
        sin_size = sizeof(struct sockaddr_in);  
        if ((nsockfd = accept(sockfd, (struct sockaddr *)&addr_remote, &sin_size)) == -1)
        {  
            printf ("ERROR: Obtain new Socket Despcritor error.\n");
            continue;
        }
        else
        {
      printf ("OK: Server has got connect from %s.\n", inet_ntoa(addr_remote.sin_addr));
        }
        
                        
        printf("Now The server receiver client information.\n");
        size=recv(nsockfd,recvbuf,LENGTH,0);
       if(size<0)
     {
    printf("read socket information error from %",inet_ntoa(addr_remote.sin_addr));
        }
    else
    printf("receiver from  client informationis %s",recvbuf);            
     }   
     close(nsockfd);  
      
}




  client.c代码如下

   
#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 5000                      // The port which is communicate with server

#define LENGTH 256                     // Buffer length


int main(int argc, char *argv[])
{
    int sockfd;                        // Socket file descriptor

    int num;                           // Counter of received bytes  

    struct sockaddr_in remote_addr;    // Host address information

    char sendbuf[LENGTH];
    char server_addr[]="192.168.1.114";
    char writebuf[LENGTH];
  
    if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
    {
        printf("ERROR: Failed to obtain Socket Descriptor!\n");
        return (0);
    }
   
    /* Fill the socket address struct */
    remote_addr.sin_family = AF_INET;                   // Protocol Family

    remote_addr.sin_port = htons(PORT);                 // Port number

    inet_pton(AF_INET, server_addr, &remote_addr.sin_addr); // Net Address

    bzero(&(remote_addr.sin_zero), 8);                  // Flush the rest of struct


    /* Try to connect the remote */
    if (connect(sockfd, (struct sockaddr *)&remote_addr,  sizeof(struct sockaddr)) == -1)
    {
        printf ("ERROR: Failed to connect to the host!\n");
        return (0);
    }  
    else
    {
        printf ("OK: Have connected to the server\n");
    }

    while(1)
    {
         printf("Please input information to send\n");
         scanf("%s",&sendbuf);
        printf("your iunput information is %s. \n",sendbuf);
         send(sockfd,sendbuf,LENGTH,0);
    }
   
    close (sockfd);
    return (0);
}



   3Q

论坛徽章:
0
2 [报告]
发表于 2008-04-29 08:34 |只看该作者
自己先顶一个

论坛徽章:
0
3 [报告]
发表于 2008-04-29 08:57 |只看该作者
你把服务中的accept放到while的外边看看

论坛徽章:
0
4 [报告]
发表于 2008-04-29 09:35 |只看该作者
是while的问题

论坛徽章:
0
5 [报告]
发表于 2008-04-29 10:25 |只看该作者
还没有接收到数据呢,就又开始等待连接了

论坛徽章:
0
6 [报告]
发表于 2008-04-29 14:59 |只看该作者
你这个port设为5000,没有问题吗?
你自己gdb看过后,应该sockaddr_in.sin_port=0吧!

论坛徽章:
0
7 [报告]
发表于 2008-04-29 18:45 |只看该作者
while中的
if ((nsockfd = accept(sockfd, (struct sockaddr *)&addr_remote, &sin_size)) == -1)
        {  
            printf ("ERROR: Obtain new Socket Despcritor error.\n");
            continue;
        }
        else
        {
      printf ("OK: Server has got connect from %s.\n", inet_ntoa(addr_remote.sin_addr));
        }
        
放到外面
你这个是单用户的TCP连接,只要accept一次就好,如果想做并发的服务器,可以考虑使用子进程,使用fork()完成并发操作,实现多哥客户端同时访问

论坛徽章:
0
8 [报告]
发表于 2008-05-12 09:39 |只看该作者
很强大

论坛徽章:
0
9 [报告]
发表于 2008-05-12 13:18 |只看该作者
其实接收端是收到了的,但是由于行缓冲的原因,你程序暂时还没有把收到的数据打印出来。另外,你的发送端也有问题。
好好看看APUE和UNP吧。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP