mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 09:36:46 +00:00
Change the socket protocol and the sample client to use multiline input
valid input: ------------------------- <command>[ <args>] ------------------------- or ------------------------- <command>[ <args>] Header1: Val HeaderN: Val ------------------------- git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2109 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
@@ -11,21 +11,29 @@ my $OUT = $term->OUT .. \*STDOUT;
|
||||
|
||||
my $log = shift;
|
||||
|
||||
$SIG{CHLD} = sub {$fs->disconnect(); die "done"};
|
||||
|
||||
if ($log) {
|
||||
$pid = fork;
|
||||
if (!$pid) {
|
||||
my $fs2 = init FreeSWITCH::Client {-password => $password} or die "Error $@";
|
||||
$fs2->cmd("log $log");
|
||||
|
||||
|
||||
$fs2->cmd({ command => "log $log" });
|
||||
while (1) {
|
||||
my $reply = $fs2->readhash(undef);
|
||||
|
||||
if ($reply->{socketerror}) {
|
||||
die "socket error";
|
||||
}
|
||||
if ($reply->{body}) {
|
||||
print $reply->{body} . "\n";
|
||||
} elsif ($reply->{'reply-text'}) {
|
||||
print $reply->{'reply-text'} . "\n";
|
||||
}
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -34,8 +42,11 @@ while ( defined ($_ = $term->readline($prompt)) ) {
|
||||
my $reply;
|
||||
|
||||
if ($_) {
|
||||
my $reply = $fs->cmd("api $_");
|
||||
|
||||
my $reply = $fs->cmd({command => "api $_"});
|
||||
if ($reply->{socketerror}) {
|
||||
$fs2->disconnect();
|
||||
die "socket error";
|
||||
}
|
||||
if ($reply->{body}) {
|
||||
print $reply->{body};
|
||||
} elsif ($reply->{'reply-text'}) {
|
||||
|
Reference in New Issue
Block a user