While working in client-server programming, I have passed 3 strings in client, which will be received by server and it should be printed in there 3 times. (i.e I have used a 'for' loop which will do the read & write operations in client & server side respectively.), but in server only the 1st string is getting printed.

Please explain,

Here is my code

server.c

#include "head.h"

void readstr(int connfd ,char [][20]);
//void writestr(char * ,int);

int main(int c ,char *v[])
{

         // socket declarations,etc
        sd =socket( AF_INET ,SOCK_STREAM ,0);


          // Binding socket
        retbind =bind(sd ,(struct sockaddr*)&serveraddress ,sizeof(serveraddress
));


        listen(sd ,4);
        for(;;)
        {
        printf("i am waiting for client\n");
        len =sizeof(cliaddr);
        connfd = accept(sd ,(struct sockaddr*)&cliaddr ,&len);
        readstr(connfd ,databuf);
        close(connfd);
        }
        return 0;
}

void readstr(int connfd ,char str[3] [20])
{
        int pointer=0 ,i=0, n,pos=0;
        memset(str ,'\0',sizeof(str));
        for(i=0;i<3;i++)
        {
        while((n=read(connfd ,str[i] ,20)) >>0)
        {
                printf("Looping while\n");
                pos =pos +n;

        }
        str[i][pos] ='\0';
        }
        for(i=0;i<3;i++)
        {
                printf("\n%s",str[i]);
        }
}

client.c

 #include "head.h"
    void send1(int ,char*);

    int main(int c,char*v[])
    {

            //Socket declarations, etc..
            sd = socket(AF_INET ,SOCK_STREAM ,0);
            //Connect
            if(connect(sd,(struct sockaddr*)&serveraddress ,sizeof(serveraddress)) <
     0)

            {
                    printf("cannot connect to server");
                    exit(1);
            }
            for(i=0;i<3;i++)
            {
                    memset(buf ,'\0',sizeof(buf));
                    printf("\n Enter the string : ");
                    fgets(buf[i],20,stdin);
                    len =strlen(buf[i]);
                    if(buf[i][len] =='\n')
                      buf[i][len]='\0';

                   send1(sd ,(char *)buf);
            }
            shutdown(sd ,SHUT_WR);
    }

    void send1(int sd ,char *str)
    {

            int n ,byteswritten =0, wr;
            char buf[1024];
            strcpy(buf ,str);
            n =strlen(buf);
            while(byteswritten < n)
            {
            printf("\nStarting to write in client side\n");
            wr = write(sd , buf+byteswritten ,(n-byteswritten));
            byteswritten+=wr;
            }
            printf("\n string sent %s" ,buf);

    }
link|improve this question
1  
feedback

migrated from serverfault.com Dec 20 '11 at 12:57

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 0 down vote accepted

In server.c in readstr() you are not setting pos to zero before the next for iteration. Also, there is strange line:

while((n=read(connfd ,str[i] ,20)) >>0)

Note ">>".

link|improve this answer
Thanks arrowdodger :) – user1107731 Dec 22 '11 at 6:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.