MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / dsHandoverMessage

Method dsHandoverMessage

SIP/SIPBase.cpp:1331–1341  ·  view source on GitHub ↗

This message is created on BTS1 to send to BTS2.

Source from the content-addressed store, hash-verified

1329
1330// This message is created on BTS1 to send to BTS2.
1331string 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

Callers 1

handoverStringMethod · 0.80

Calls 2

encodeSpacesFunction · 0.85
smGenerateMethod · 0.80

Tested by

no test coverage detected