Remove an obsolete part of the receive_client_request() description
authorFabian Keil <fk@fabiankeil.de>
Sat, 10 Dec 2011 17:26:11 +0000 (17:26 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 10 Dec 2011 17:26:11 +0000 (17:26 +0000)
If the client connects and doesn't say anything,
the connection will timeout.

jcc.c

diff --git a/jcc.c b/jcc.c
index 49f78d6..5ae051c 100644 (file)
--- a/jcc.c
+++ b/jcc.c
@@ -1,4 +1,4 @@
-const char jcc_rcs[] = "$Id: jcc.c,v 1.373 2011/11/06 11:48:23 fabiankeil Exp $";
+const char jcc_rcs[] = "$Id: jcc.c,v 1.374 2011/11/06 11:58:51 fabiankeil Exp $";
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jcc.c,v $
@@ -1230,10 +1230,6 @@ static char *get_request_line(struct client_state *csp)
  * Description : Read the client's request (more precisely the
  *               client headers) and answer it if necessary.
  *
- *               Note that since we're not using select() we could get
- *               blocked here if a client connected, then didn't say
- *               anything!
- *
  * Parameters  :
  *          1  :  csp = Current client state (buffers, headers, etc...)
  *