| 32 | SipDialog *gRegisterDialog = NULL; |
| 33 | |
| 34 | SipDialog *getRegistrar() |
| 35 | { |
| 36 | if (gRegisterDialog == NULL) { |
| 37 | gRegisterDialog = SipDialog::newSipDialogRegister1(); |
| 38 | } else { |
| 39 | // This allows the user to change SIP.Proxy.Registration from the CLI. |
| 40 | gRegisterDialog->updateProxy("SIP.Proxy.Registration"); |
| 41 | } |
| 42 | return gRegisterDialog; |
| 43 | } |
| 44 | |
| 45 | void SipDialog::dgReset() |
| 46 | { |
no test coverage detected