dgaudet 98/01/28 02:09:29
Modified: src Tag: APACHE_1_2_X CHANGES http_main.c
Log:
SIGURG isn't everywhere, unlike Elvis.
Submitted by: Mark Andrew Heinrich <[EMAIL PROTECTED]>
Reviewed by: Dean Gaudet
Revision Changes Path
No revision
No revision
1.286.2.76 +3 -0 apache-1.2/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/CHANGES,v
retrieving revision 1.286.2.75
retrieving revision 1.286.2.76
diff -u -r1.286.2.75 -r1.286.2.76
--- CHANGES 1998/01/27 08:37:50 1.286.2.75
+++ CHANGES 1998/01/28 10:09:25 1.286.2.76
@@ -1,5 +1,8 @@
Changes with Apache 1.2.6
+ *) SIGURG doesn't exist on all platforms.
+ [Mark Andrew Heinrich <[EMAIL PROTECTED]>]
+
*) When an error occurs during a POST, or other operation with a
request body, the body has to be read from the net before allowing
a keepalive session to continue. [Roy Fielding] PR#1399
1.149.2.12 +2 -0 apache-1.2/src/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-1.2/src/http_main.c,v
retrieving revision 1.149.2.11
retrieving revision 1.149.2.12
diff -u -r1.149.2.11 -r1.149.2.12
--- http_main.c 1998/01/20 01:09:39 1.149.2.11
+++ http_main.c 1998/01/28 10:09:27 1.149.2.12
@@ -1714,7 +1714,9 @@
*/
ap_setjmp (jmpbuffer);
#ifndef __EMX__
+#ifdef SIGURG
signal(SIGURG, timeout);
+#endif
#endif
while (1) {