summaryrefslogtreecommitdiffstats
path: root/action.cpp
diff options
context:
space:
mode:
authorAndreas Eversberg2010-01-24 19:41:32 +0100
committerAndreas Eversberg2010-01-24 19:41:32 +0100
commit8fb861ef9ece9f4bd68ef79a77625ec23c27aef1 (patch)
treeea055ed2a47d381bfd1978105442ff9144a7007c /action.cpp
parentAdded queue buffer for chan_lcr sending faxes without interruption. (diff)
downloadlcr-8fb861ef9ece9f4bd68ef79a77625ec23c27aef1.tar.gz
lcr-8fb861ef9ece9f4bd68ef79a77625ec23c27aef1.tar.xz
lcr-8fb861ef9ece9f4bd68ef79a77625ec23c27aef1.zip
- Fixed HLC (higher layer capability) modification to LCR routing.
- Fixed chan_lcr fax queue buffer. Added LCR_TRANSFERCAPABILITY environment. -> use options "n:t:q250" for sending/receiving faxes with asterisk and chan_lcr. modified: README modified: action.cpp modified: bchannel.c modified: chan_lcr.c modified: route.c modified: route.h
Diffstat (limited to 'action.cpp')
-rw-r--r--action.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/action.cpp b/action.cpp
index aa83304..62f63ed 100644
--- a/action.cpp
+++ b/action.cpp
@@ -111,6 +111,8 @@ void EndpointAppPBX::action_dialing_internal(void)
capainfo.bearer_mode = INFO_BMODE_PACKET;
}
capainfo.bearer_info1 = INFO_INFO1_NONE;
+ capainfo.hlc = INFO_HLC_NONE;
+ capainfo.exthlc = INFO_HLC_NONE;
}
if ((rparam = routeparam(e_action, PARAM_BMODE))) {
capainfo.bearer_mode = rparam->integer_value;
@@ -237,6 +239,8 @@ void EndpointAppPBX::action_dialing_external(void)
capainfo.bearer_mode = INFO_BMODE_PACKET;
}
capainfo.bearer_info1 = INFO_INFO1_NONE;
+ capainfo.hlc = INFO_HLC_NONE;
+ capainfo.exthlc = INFO_HLC_NONE;
}
if ((rparam = routeparam(e_action, PARAM_BMODE))) {
capainfo.bearer_mode = rparam->integer_value;