From f661756d42870c42d10d783646611548dd6360b3 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sat, 6 Jul 2002 05:37:47 +0000 Subject: [PATCH] Add some notes about select() limitations to TODO. svn path=/trunk/icecast/; revision=3537 --- TODO | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TODO b/TODO index 300bce19..728cda33 100644 --- a/TODO +++ b/TODO @@ -5,6 +5,12 @@ BUGS - seem to be some segfaults in httpp still. in a few of the cores i've been sent, the avl_tree is null when calling into the avl module. +- ensure we don't connect a source if the fd would be more then FD_SETSIZE + (1024, on linux). Otherwise memory gets overrun, and crashes result. + Preferably allow using poll() instead of select() through a lightweight + abstraction. + + FEATURES