Add a new Via with a new unique branch.
| 247 | |
| 248 | // Add a new Via with a new unique branch. |
| 249 | void SipMessage::smAddViaBranch(string transport, string branch) |
| 250 | { |
| 251 | string newvia = format("SIP/2.0/%s %s;branch=%s\r\n",transport,localIPAndPort(),branch); |
| 252 | commaListPushFront(&msmVias,newvia); |
| 253 | } |
| 254 | void SipMessage::smAddViaBranch(SipBase *dialog, string branch) |
| 255 | { |
| 256 | // Add a visible hint to the tag for debugging. Use the Request Method, if any. |
no test coverage detected