[Freeswitch-svn] [commit] r8348 -	freeswitch/trunk/src/mod/endpoints/mod_reference
    Freeswitch SVN 
    anthm at freeswitch.org
       
    Sat May 10 01:52:47 EDT 2008
    
    
  
Author: anthm
Date: Sat May 10 01:52:46 2008
New Revision: 8348
Modified:
   freeswitch/trunk/src/mod/endpoints/mod_reference/mod_reference.c
Log:
finish removal of timeout
Modified: freeswitch/trunk/src/mod/endpoints/mod_reference/mod_reference.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_reference/mod_reference.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_reference/mod_reference.c	Sat May 10 01:52:46 2008
@@ -304,14 +304,6 @@
 			return SWITCH_STATUS_SUCCESS;
 		}
 
-		if (timeout > -1) {
-			elapsed = (unsigned int) ((switch_time_now() - started) / 1000);
-			if (elapsed >= (unsigned int) timeout) {
-				return SWITCH_STATUS_SUCCESS;
-			}
-		}
-
-
 		switch_yield(1000);
 	}
 
    
    
More information about the Freeswitch-svn
mailing list