[Freeswitch-svn] [commit] r3133 - in freeswitch/trunk: scripts/socket src/mod/applications/mod_conference src/mod/event_handlers/mod_event_socket
Freeswitch SVN
anthm at freeswitch.org
Fri Oct 20 23:19:49 EDT 2006
Author: anthm
Date: Fri Oct 20 23:19:48 2006
New Revision: 3133
Modified:
freeswitch/trunk/scripts/socket/fsconsole.pl
freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c
Log:
fix
Modified: freeswitch/trunk/scripts/socket/fsconsole.pl
==============================================================================
--- freeswitch/trunk/scripts/socket/fsconsole.pl (original)
+++ freeswitch/trunk/scripts/socket/fsconsole.pl Fri Oct 20 23:19:48 2006
@@ -225,7 +225,7 @@
#see if we got connected at some point
if(defined($sockets{'localhost'})) {
#send the command
- $sockets{'localhost'}->put($input);
+ $sockets{'localhost'}->put("api $input");
}
}
}
Modified: freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c (original)
+++ freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c Fri Oct 20 23:19:48 2006
@@ -2731,7 +2731,7 @@
"<confname> lock\n"
"<confname> unlock\n"
"<confname> dial <endpoint_module_name>/<destination>\n"
- "<confname> transfer <member_id> <conference_name>",
+ "<confname> transfer <member_id> <conference_name>\n",
/*.next */
};
Modified: freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c
==============================================================================
--- freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c (original)
+++ freeswitch/trunk/src/mod/event_handlers/mod_event_socket/mod_event_socket.c Fri Oct 20 23:19:48 2006
@@ -555,7 +555,7 @@
acs.bg = 0;
api_exec(NULL, (void *) &acs);
- snprintf(reply, reply_len, "+OK");
+ //snprintf(reply, reply_len, "+OK");
return SWITCH_STATUS_SUCCESS;
} else if (!strncasecmp(cmd, "bgapi ", 6)) {
More information about the Freeswitch-svn
mailing list