diff -u --recursive --new-file httpd-2.0-vanilla/include/ap_mmn.h httpd-2.0/include/ap_mmn.h
--- httpd-2.0-vanilla/include/ap_mmn.h	Wed Sep  4 14:12:20 2002
+++ httpd-2.0/include/ap_mmn.h	Mon Oct 14 11:47:46 2002
@@ -111,12 +111,13 @@
  * 20020625 (2.0.40-dev) Changed conn_rec->keepalive to an enumeration
  * 20020628 (2.0.40-dev) Added filter_init to filter registration functions
  * 20020903 (2.0.41-dev) APR's error constants changed
+ * 20021014 (2.0.44-dev) conn_rec gets bytes_in and bytes_out fields
  */
 
 #define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */
 
 #ifndef MODULE_MAGIC_NUMBER_MAJOR
-#define MODULE_MAGIC_NUMBER_MAJOR 20020903
+#define MODULE_MAGIC_NUMBER_MAJOR 20021014
 #endif
 #define MODULE_MAGIC_NUMBER_MINOR 0                     /* 0...n */
 
diff -u --recursive --new-file httpd-2.0-vanilla/include/httpd.h httpd-2.0/include/httpd.h
--- httpd-2.0-vanilla/include/httpd.h	Sat Oct 12 02:12:28 2002
+++ httpd-2.0/include/httpd.h	Mon Oct 14 11:47:46 2002
@@ -1018,6 +1018,10 @@
     void *sbh;
     /** The bucket allocator to use for all bucket/brigade creations */
     struct apr_bucket_alloc_t *bucket_alloc;
+    /** Input bytes on this connection */
+    apr_off_t bytes_in;
+    /** Output bytes on this connection */
+    apr_off_t bytes_out;
 };
 
 /* Per-vhost config... */
