]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
The fix for FS-3577 causes instabilities if multiple listeners are connected it seems...
authordschreiber <d@d-man.org>
Tue, 12 Jun 2012 04:59:47 +0000 (21:59 -0700)
committerdschreiber <d@d-man.org>
Tue, 12 Jun 2012 04:59:47 +0000 (21:59 -0700)
src/mod/event_handlers/mod_erlang_event/mod_erlang_event.c

index 12cf01a650c6a13cb19c2f5b0058317d9f8128c0..1c1c953dae71af52639359da16a78606495cea6d 100644 (file)
@@ -819,7 +819,7 @@ static void listener_main_loop(listener_t *listener)
 
                /* do we need the mutex when reading? */
                /*switch_mutex_lock(listener->sock_mutex); */
-               status = ei_xreceive_msg_tmo(listener->sockfd, &msg, &buf, 10);
+               status = ei_xreceive_msg_tmo(listener->sockfd, &msg, &buf, 100);
                /*switch_mutex_unlock(listener->sock_mutex); */
 
                switch (status) {