issue 18
(don't wait timeout when issuing a command) commented on by acumen.ljb
- Agreed on the bug, but this patch causes commands to not be executed, and Asterisk
servers to complain of broken pipes, depending on the platform.
The proper way is to test for a double line break. I have attached the correct patch.
Cheers,
Leo
Agreed on the bug, but this patch causes commands to not be executed, and Asterisk
servers to complain of broken pipes, depending on the platform.
The proper way is to test for a double line break. I have attached the correct patch.
Cheers,
Leo
Jul 08, 2009
issue 16
(Originate call execption) commented on by doug.bromley
- Please provide any suggested code changes here for all to see.
Thanks.
Please provide any suggested code changes here for all to see.
Thanks.
issue 18
(don't wait timeout when issuing a command) reported by math.parent
- Current code uses stream_get_contents which wait for EOF or timeout.
Tha attached patch consider the command responded when an empty line is sent.
Current code uses stream_get_contents which wait for EOF or timeout.
Tha attached patch consider the command responded when an empty line is sent.
Jun 12, 2009
issue 17
(Variables wrong in Originate Call) commented on by math.parent
- this seems to be fixed on trunk
this seems to be fixed on trunk
Mar 01, 2009
issue 17
(Variables wrong in Originate Call) commented on by richardlynchchicago
- I did the diff backwards. Sorry!
--- AsteriskManager.php 2009-03-01 18:24:02.000000000 -0600
+++ AsteriskManager.php.original 2009-03-01 18:24:26.000000000 -0600
@@ -323,7 +323,7 @@
$chunked_vars[] = "$key=$val";
}
$chunked_vars = implode('|', $chunked_vars);
- $command .= "Variable: $variables\r\n";
+ $command .= "Variable: $chunked_vars\r\n";
}
if ($action_id) {
issue 17
(Variables wrong in Originate Call) reported by richardlynchchicago
- What steps will reproduce the problem?
1. Originate a call with Variables arg.
What is the expected output? What do you see instead?
Command: Originate...Variable: foo=bar|baz=2
Command: Origiante...Variable: Array
What version of the product are you using? On what operating system?
N/A
Please provide any additional information below.
Patch:
--- AsteriskManager.php 2009-03-01 18:24:02.000000000 -0600
+++ AsteriskManager.php.original 2009-03-01 18:24:26.000000000 -0600
@@ -323,7 +323,7 @@
$chunked_vars[] = "$key=$val";
}
$chunked_vars = implode('|', $chunked_vars);
- $command .= "Variable: $chunked_vars\r\n";
+ $command .= "Variable: $variables\r\n";
}
if ($action_id) {
What steps will reproduce the problem?
1. Originate a call with Variables arg.
What is the expected output? What do you see instead?
Command: Originate...Variable: foo=bar|baz=2
Command: Origiante...Variable: Array
What version of the product are you using? On what operating system?
N/A
Please provide any additional information below.
Patch:
--- AsteriskManager.php 2009-03-01 18:24:02.000000000 -0600
+++ AsteriskManager.php.original 2009-03-01 18:24:26.000000000 -0600
@@ -323,7 +323,7 @@
$chunked_vars[] = "$key=$val";
}
$chunked_vars = implode('|', $chunked_vars);
- $command .= "Variable: $chunked_vars\r\n";
+ $command .= "Variable: $variables\r\n";
}
if ($action_id) {
Feb 18, 2009
issue 16
(Originate call execption) reported by jerdguez
- What steps will reproduce the problem?
1. Originate a call to a channels you can answer (SIP/IAX Softphone)
2. Wait until the socket timeout comes
3. then an execption is thrown
I manage the problem by changing a little the code. I can send you the
code, so you can take a look a it.
I have added the ExtensionState command too, just let me know if would like
to see it (I saw an issue/enhancement with this).
Can contact me at: jerdguez _at_ gmail _dot_ com
What steps will reproduce the problem?
1. Originate a call to a channels you can answer (SIP/IAX Softphone)
2. Wait until the socket timeout comes
3. then an execption is thrown
I manage the problem by changing a little the code. I can send you the
code, so you can take a look a it.
I have added the ExtensionState command too, just let me know if would like
to see it (I saw an issue/enhancement with this).
Can contact me at: jerdguez _at_ gmail _dot_ com
Older
Sep 06, 2008
r86
(Fixing bug in originateCall variable passing) committed by doug.bromley
- Fixing bug in originateCall variable passing