| 206 | } |
| 207 | |
| 208 | DialogStateVars::DialogStateVars() |
| 209 | { |
| 210 | // generate a tag now. |
| 211 | // (pat) It identifies our side of the SIP dialog to the peer. |
| 212 | // It is placed in the to-tag for both responses and requests. |
| 213 | // For responses we munge the saved INVITE immediately so all responses use this to-tag. |
| 214 | //mLocalTag=make_tag(); |
| 215 | |
| 216 | // set our CSeq in case we need one |
| 217 | mLocalCSeq = gSipInterface.nextInviteCSeqNum(); // formerly: random()%600; |
| 218 | } |
| 219 | |
| 220 | string DialogStateVars::dsToString() const |
| 221 | { |
nothing calls this directly
no test coverage detected