* Create a new dialog (auto mode) */
| 199 | * Create a new dialog (auto mode) |
| 200 | */ |
| 201 | int new_auto_dlg_uac( str* _luri, str* _turi, str* _ruri, str *callid, const struct socket_info* _sock, dlg_t** _d) |
| 202 | { |
| 203 | str fromtag, clid; |
| 204 | |
| 205 | if (!callid) { |
| 206 | generate_callid(&clid); |
| 207 | callid = &clid; |
| 208 | } |
| 209 | |
| 210 | generate_fromtag(&fromtag, callid); |
| 211 | |
| 212 | return _internal_new_dlg_uac(callid, &fromtag, 13/*cseq*/,_luri, |
| 213 | _turi, _ruri,_sock,_d); |
| 214 | } |
| 215 | |
| 216 | |
| 217 | /* |
nothing calls this directly
no test coverage detected