Copy the top via from other into this.
| 241 | |
| 242 | // Copy the top via from other into this. |
| 243 | void SipMessage::smCopyTopVia(SipMessage *other) |
| 244 | { |
| 245 | this->msmVias = commaListFront(other->msmVias); |
| 246 | } |
| 247 | |
| 248 | // Add a new Via with a new unique branch. |
| 249 | void SipMessage::smAddViaBranch(string transport, string branch) |
no test coverage detected