diff --git a/darkice/trunk/ChangeLog b/darkice/trunk/ChangeLog index 397bc9c..a955ae3 100644 --- a/darkice/trunk/ChangeLog +++ b/darkice/trunk/ChangeLog @@ -1,3 +1,9 @@ +DarkIce next version: + + o bugfix: MultiThreadedConnector::sinkThread() was private, now public + o added fileAddDate configuration option + thanks to Nicu Pavel + 20-10-2002: DarkIce 0.12 released o ported to FreeBSD (removed reference to MSG_NOSIGNAL in TcpSocket.cpp) diff --git a/darkice/trunk/src/MultiThreadedConnector.h b/darkice/trunk/src/MultiThreadedConnector.h index 55da43c..219ad5c 100644 --- a/darkice/trunk/src/MultiThreadedConnector.h +++ b/darkice/trunk/src/MultiThreadedConnector.h @@ -180,15 +180,6 @@ class MultiThreadedConnector : public virtual Connector void strip ( void ) throw ( Exception ); - /** - * This is the function for each thread. - * This function has to return fast - * - * @param ixSink the index of the sink this thread works on. - */ - void - sinkThread( int ixSink ); - protected: /** @@ -310,6 +301,15 @@ class MultiThreadedConnector : public virtual Connector */ virtual void close ( void ) throw ( Exception ); + + /** + * This is the function for each thread. + * This function has to return fast + * + * @param ixSink the index of the sink this thread works on. + */ + void + sinkThread( int ixSink ); }; @@ -328,6 +328,9 @@ class MultiThreadedConnector : public virtual Connector $Source$ $Log$ + Revision 1.3 2002/11/26 21:41:20 darkeye + bugfix: MultiThreadedConnector::sinkThread() was private, now public + Revision 1.2 2002/10/19 13:35:21 darkeye when a connection is dropped, DarkIce tries to reconnect, indefinitely removed extreme event reporting for thread-related events