<font size=2>
FOR_ALL_CONST( handler_map_t, i, this->handlers, 
{ 
     const handler_t &     h = i->second; 

     if( FD_ISSET( i->first, &fds ) ) 
             h.handler( i->first, h.priv ); 
} );
</font>