* Had to add LF at the end of conference extra_headers, because without

it, last extra header in outgoing INVITE was not terminated with CRLF.
  I have not verified if this is a bug also in 0.10 or if it showed up
  with SIP control interface.


git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@774 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Juha Heinanen 18 years ago
parent b5923a965d
commit d7c8b7f699

@ -349,6 +349,9 @@ void ConferenceDialog::onSessionStart(const AmSipRequest& req)
for (i = 0; i < len; i++) {
if (extra_headers[i] == '|') extra_headers[i] = '\n';
}
if (extra_headers[len - 1] != '\n') {
extra_headers += '\n';
}
if (dialout_suffix.length() == 0) {
if (!ConferenceFactory::DialoutSuffix.empty()) {

Loading…
Cancel
Save