[MEDIUM] got rid of event_{cli,srv}_read() in favor of stream_sock_read()
diff --git a/include/types/buffers.h b/include/types/buffers.h
index 2099b5d..b96d14b 100644
--- a/include/types/buffers.h
+++ b/include/types/buffers.h
@@ -59,6 +59,12 @@
 
 struct buffer {
 	u_int32_t flags;                /* BF_* */
+	struct timeval rex;             /* expiration date for a read  */
+	struct timeval wex;             /* expiration date for a write */
+	struct timeval cex;             /* expiration date for a connect */
+	int rto;                        /* read timeout */
+	int wto;                        /* write timeout */
+	int cto;                        /* connect timeout */
 	unsigned int l;                 /* data length */
 	char *r, *w, *h, *lr;           /* read ptr, write ptr, last header ptr, last read */
 	char *rlim;                     /* read limit, used for header rewriting */