From: Fabian Keil Date: Thu, 10 Sep 2009 14:53:34 +0000 (+0000) Subject: Also peek in data_is_available(). X-Git-Tag: v_3_0_15~69 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=48c3349cf8ef334a30f9ceb535f64b0ee140a4e6;p=privoxy.git Also peek in data_is_available(). Pointed out by Lee a while ago. --- diff --git a/jbsockets.c b/jbsockets.c index 1666b5fa..15772f05 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.65 2009/07/22 22:27:16 fabiankeil Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.66 2009/09/06 15:22:31 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -586,6 +586,7 @@ int read_socket(jb_socket fd, char *buf, int len) *********************************************************************/ int data_is_available(jb_socket fd, int seconds_to_wait) { + char buf[10]; fd_set rfds; struct timeval timeout; int n; @@ -606,7 +607,7 @@ int data_is_available(jb_socket fd, int seconds_to_wait) /* * XXX: Do we care about the different error conditions? */ - return (n == 1); + return ((n == 1) && (1 == recv(fd, buf, 1, MSG_PEEK))); }