]> granicus.if.org Git - apache/commitdiff
r1599852 and r1599799 in trunk
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 9 Jun 2014 06:22:01 +0000 (06:22 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 9 Jun 2014 06:22:01 +0000 (06:22 +0000)
Fix broken URL in comment

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1601316 13f79535-47bb-0310-9956-ffa450edef68

include/http_connection.h
server/connection.c

index 2192507d9373d1b9732c4fbc58143bec48d8eb1d..f73670b442dc36ff97a11b89374060eaee5ad50c 100644 (file)
@@ -57,10 +57,10 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c);
  * This function is responsible for the following cases:
  * <pre>
  * we now proceed to read from the client until we get EOF, or until
- * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
+ * MAX_SECS_TO_LINGER has passed.  The reasons for doing this are
  * documented in a draft:
  *
- * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
+ * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
  *
  * in a nutshell -- if we don't make this effort we risk causing
  * TCP RST packets to be sent which can tear down a connection before
index 6e4495f838969efee0ab11b594091d945fe6cba4..437ae10bac265760fc9f9b6329e811951a1fc7fb 100644 (file)
@@ -83,10 +83,10 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c)
 }
 
 /* we now proceed to read from the client until we get EOF, or until
- * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
+ * MAX_SECS_TO_LINGER has passed.  The reasons for doing this are
  * documented in a draft:
  *
- * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
+ * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
  *
  * in a nutshell -- if we don't make this effort we risk causing
  * TCP RST packets to be sent which can tear down a connection before