From fb55d9b736c48ec13c4c658fe08c5c2a42c61f6d Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 28 Apr 2010 12:04:25 +0000 Subject: [PATCH] Updated for 1.9.2 --- NEWS | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/NEWS b/NEWS index 97c0996a..27ca7875 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,34 @@ +aria2 1.9.2 +=========== + +Release Note +------------ + +This release adds kqueue, port_associate/port_getn and poll() support +for socket event notification to eliminate 1024 file descriptor +limitation of select() call. The bug that aria2.unpause and +aria2.unpauseAll XML-RPC method fail when -s1 is given in command-line +argument was fixed. + +Changes +------- + + * Print warning when trying to add file descriptor >= FD_SET or < 0 + to fd_set for other than MinGW32 build. For MinGW32 build, print + warning when trying to add file descriptor to fd_set when it + already contains FD_SET file descriptors. + + * Defined FD_SETSIZE 1024 for MinGW32. + + * Added missing timespec.h to SRCS + + * Fixed the bug that aria2.unpause fails with -s1. + + * Supported poll, kqueue, port_associate/port_getn for socket event + notification + + + aria2 1.9.1 ===========