2005-02-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>

	* stream.h: Declare new function stream_read_try suitable for use
	  with non-blocking file descriptors.  Indicate that stream_read
	  and stream_read_unblock are deprecated.
	* stream.c: (stream_read_try) New function for use with non-blocking
	  I/O.
	  (stream_recvmsg) Should return -1 if the stream is too small to
	  contain the data.
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 0627d20..ac05bab 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,5 +1,15 @@
 2005-02-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
+	* stream.h: Declare new function stream_read_try suitable for use
+	  with non-blocking file descriptors.  Indicate that stream_read
+	  and stream_read_unblock are deprecated.
+	* stream.c: (stream_read_try) New function for use with non-blocking
+	  I/O.
+	  (stream_recvmsg) Should return -1 if the stream is too small to
+	  contain the data.
+
+2005-02-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
 	* network.c: (set_nonblocking) Should check return code from
 	  fcntl(F_GETFL).