From d5ef9ab196e7fc399aeb70ef5f991d45062c3aa4 Mon Sep 17 00:00:00 2001 From: Anthony Minessale <anthony.minessale@gmail.com> Date: Sat, 20 Dec 2008 14:57:31 +0000 Subject: [PATCH] update git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10894 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- libs/esl/fs_cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c index c52a61b4cb..4fe7908236 100644 --- a/libs/esl/fs_cli.c +++ b/libs/esl/fs_cli.c @@ -46,7 +46,7 @@ static void *msg_thread_run(esl_thread_t *me, void *obj) while(thread_running && handle->connected) { fd_set rfds, efds; - struct timeval tv = { 0, 50 * 1000 }; + struct timeval tv = { 0, 10 * 1000 }; int max, activity, i = 0; esl_mutex_lock(global_mutex); @@ -186,7 +186,7 @@ int main(int argc, char *argv[]) signal(SIGINT, handle_SIGINT); gethostname(hostname, sizeof(hostname)); - handle.debug = 1; + handle.debug = 0; if (esl_config_open_file(&cfg, cfile)) {