ake 2003/04/15 15:28:13
Modified: . CHANGES
include apr.hw
Log:
Add APR_TCP_NODELAY_INHERITED & APR_O_NONBLOCK_INHERITED to apr.hw
Revision Changes Path
1.400 +3 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.399
retrieving revision 1.400
diff -u -r1.399 -r1.400
--- CHANGES 15 Apr 2003 21:45:57 -0000 1.399
+++ CHANGES 15 Apr 2003 22:28:13 -0000 1.400
@@ -1,5 +1,8 @@
Changes with APR 0.9.4
+ *) Add APR_TCP_NODELAY_INHERITED & APR_O_NONBLOCK_INHERITED to apr.hw
+ [Allan Edwards]
+
*) Add APR_UINT64_T_HEX_FMT. [Jeff Trawick]
*) Add parameter to APR_SUBDIR_CONFIG to drop options passed to configure
1.115 +8 -0 apr/include/apr.hw
Index: apr.hw
===================================================================
RCS file: /home/cvs/apr/include/apr.hw,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- apr.hw 15 Apr 2003 21:45:58 -0000 1.114
+++ apr.hw 15 Apr 2003 22:28:13 -0000 1.115
@@ -342,6 +342,14 @@
*/
#define APR_CHARSET_EBCDIC 0
+/* Is the TCP_NODELAY socket option inherited from listening sockets?
+ */
+#define APR_TCP_NODELAY_INHERITED 1
+
+/* Is the O_NONBLOCK flag inherited from listening sockets?
+ */
+#define APR_O_NONBLOCK_INHERITED 1
+
/* Typedefs that APR needs. */
typedef unsigned char apr_byte_t;