Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.46 KB | None | 0 0
  1.     while(1) {
  2.         //recieve
  3.         if(numBytesRead >= 4) {
  4.             //fprintf(logFile, "last 4 bytes: %s\n", buf + (numBytesRead - 4));
  5.             if(strncmp(buf + (numBytesRead - 4), "\r\n\r\n", 4) == 0) {
  6.                 break;
  7.             }
  8.         }
  9.         ssize_t nread = recv(sfd2, buf + numBytesRead, 1, 0);
  10.         if(nread == 0) {
  11.             break;
  12.         }
  13.         else if (nread == -1) {
  14.             continue;               /* Ignore failed request */
  15.         }
  16.         else {
  17.             numBytesRead += nread;
  18.         }
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement