r3135 - trunk/libmsip/source

erik at minisip.org erik at minisip.org
Sun Jan 21 11:43:19 CET 2007


Author: erik
Date: 2007-01-21 11:43:18 +0100 (Sun, 21 Jan 2007)
New Revision: 3135

Modified:
   trunk/libmsip/source/SipDialogConfig.cxx
   trunk/libmsip/source/SipLayerTransport.cxx
   trunk/libmsip/source/SipSocketServer.cxx
Log:

 * "externalContactUdpPort" was left uninitialized when a
    SipStackConfig was created. Now it is set to 0.

 * Temoved some debug output.



Modified: trunk/libmsip/source/SipDialogConfig.cxx
===================================================================
--- trunk/libmsip/source/SipDialogConfig.cxx	2007-01-20 20:44:48 UTC (rev 3134)
+++ trunk/libmsip/source/SipDialogConfig.cxx	2007-01-21 10:43:18 UTC (rev 3135)
@@ -336,6 +336,7 @@
 }
 
 SipStackConfig::SipStackConfig():
+	externalContactUdpPort(0),
 	localUdpPort(0),
 	localTcpPort(0),
 	localTlsPort(0),

Modified: trunk/libmsip/source/SipLayerTransport.cxx
===================================================================
--- trunk/libmsip/source/SipLayerTransport.cxx	2007-01-20 20:44:48 UTC (rev 3134)
+++ trunk/libmsip/source/SipLayerTransport.cxx	2007-01-21 10:43:18 UTC (rev 3135)
@@ -298,13 +298,10 @@
 StreamThreadData::StreamThreadData( MRef<SipLayerTransport *> transport){
 	doStop=false;
 	this->transport = transport;
-	cerr << "Creating thread"<<endl;
 	th=Thread::createThread(streamThread, this);
-	cerr << "threadhandle is as long int: "<<th.asLongInt()<<endl;
 }
 
 void StreamThreadData::join(){
-	cerr << "threadhandle is as long int: "<<th.asLongInt()<<endl;
 	Thread::join(th);
 }
 

Modified: trunk/libmsip/source/SipSocketServer.cxx
===================================================================
--- trunk/libmsip/source/SipSocketServer.cxx	2007-01-20 20:44:48 UTC (rev 3134)
+++ trunk/libmsip/source/SipSocketServer.cxx	2007-01-21 10:43:18 UTC (rev 3135)
@@ -93,7 +93,6 @@
 
 	}
 
-	cerr << "SipSocketServer stopped" << endl;
 } // "myself" will be freed here and the object can be freed.
 
 void SipSocketServer::start(){



More information about the Minisip-devel mailing list