How would you make a server be able to send messages to a client using printf or fprintf instead of using the write system call?
I already have my server made and working, sending messages via write, but I would rather use fprintf.
For example this didn't work:
newsockfd = accept(sockfd,(struct sockaddr *) &cli_addr, &clilen);
FILE *fp = fdopen(newsockfd, "w");
fprintf(fp, "test");
fflush(fp);
I know have a new problem. When I have just the above code it works and I can see it in my browser, however if I add read(newsockfd,buffer,255) after then I on longer see the message posted in my client.
fflush(fp);... – R.. Jun 9 '11 at 17:05