This message is created on BTS1 to send to BTS2.
| 1329 | |
| 1330 | // This message is created on BTS1 to send to BTS2. |
| 1331 | string SipBase::dsHandoverMessage(string peer) const |
| 1332 | { |
| 1333 | SipMessage *msg = new SipMessageHandoverRefer(this,peer); |
| 1334 | string str = msg->smGenerate(); |
| 1335 | //LOG(DEBUG) <<LOGVAR(str); |
| 1336 | // We are temporarily sending this over the peering interface in a string of space-separated parameters. |
| 1337 | // So to get rid of the spaces, replace them with tabs. |
| 1338 | string result= encodeSpaces(str); |
| 1339 | //LOG(DEBUG) <<LOGVAR(result); |
| 1340 | return result; |
| 1341 | } |
| 1342 | |
| 1343 | |
| 1344 |
no test coverage detected