Advertisement
kn0tsel

Naughty-01

Apr 9th, 2013
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.82 KB | None | 0 0
  1.   /* We go ahead and do a read if we have a readable socket or if
  2.      the stream was rewound (in which case we have data in a buffer) */
  3.  
  4.   if((k->keepon & KEEP_RECV) &&
  5.      ((select_res & CURL_CSELECT_IN) || conn->bits.stream_was_rewound)) {
  6.  
  7.     result = readwrite_data(data, conn, k, &didwhat, done);
  8.  
  9.     if(result || *done)
  10.       return result;
  11.   }
  12.   else if(k->keepon & KEEP_RECV) {
  13.  
  14.     DEBUGF(infof(data, "additional stuff not fine %s:%d: %d %d\n",
  15.                  __FILE__, __LINE__,
  16.                  select_res & CURL_CSELECT_IN,    <== This can only be NAUGHT, N0T?
  17.                  conn->bits.stream_was_rewound)); <== This is indeed line 1037..
  18.   }
  19.  
  20. /** additional stuff not fine in transfer.c:1037: 0 0 <== That's #NAUGHTY..
  21.   * #NIL #N0T #NøT #NAUGHT %N0T %NAUGHTY @NAUGHTY $NAUGHTY very !NAUGHTY
  22.   */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement