Hi I have a simple problem I think, but I am not able to figure it out. Here is my code snippet
void makefilerequest(){
int n;
char buffer[256];
char file[] = "test.txt";
printf("Enter file: ");
bzero(file, 256);
//fgets(buffer, 255, stdin);
n = write(sockfd, file, strlen(file));
if( n < 0)
error("ERROR writing to socket");
bzero(buffer,256);
n = read(sockfd,buffer,255);
if (n < 0)
error("ERROR reading from socket");
printf("%s\n",buffer);
}
My problem is when I try to set a char[] that contains the info to write to the socket my program does not move forward it stops at n = write(sockfd, file, strlen(file));. However when I read in say test.txt from stdin it works and my program executes. If I make the following changes it works but I don't want to pass it the information through stdin.
void makefilerequest(){
int n;
char buffer[256];
char file[] = "test.txt";
printf("Enter file: ");
bzero(buffer, 256);
fgets(buffer, 255, stdin);
n = write(sockfd, buffer, strlen(buffer));
if( n < 0)
error("ERROR writing to socket");
bzero(buffer,256);
n = read(sockfd,buffer,255);
if (n < 0)
error("ERROR reading from socket");
printf("%s\n",buffer);
}
Thanks in advance
bzerodo and why do you passfiletobzeroin the first snippet? – Maciej Hehl Feb 13 at 6:06memsetexcept it always initializes all the values to zero unlikememsetin which you can initialize the values to anything. – Ameya Savale Feb 13 at 6:09filebefore passing it towrite? Isn't that the reason of the behaviour you are experiencing? – Maciej Hehl Feb 13 at 6:16