如何在linphone中取消注册SIP?

时间:2013-03-14 19:01:18

标签: iphone ios sip linphone

有没有办法从SIP取消注册并在Linphone中重新注册?

我找不到取消注册功能。

我应该完全销毁linphone核心吗? 还是有更软的解决方案?

目前我正在尝试在iOS中实现它,但稍后这将是其他平台所必需的。

谢谢。

6 个答案:

答案 0 :(得分:8)

// Get the default proxyCfg in Linphone
LinphoneProxyConfig* proxyCfg = NULL;
linphone_core_get_default_proxy([LinphoneManager getLc], &proxyCfg);

// To unregister from SIP
linphone_proxy_config_edit(proxyCfg);
linphone_proxy_config_enable_register(proxyCfg, false);
linphone_proxy_config_done(proxyCfg);

// And re-register when want
linphone_proxy_config_edit(proxyCfg);
linphone_proxy_config_enable_register(proxyCfg, true);
linphone_proxy_config_done(proxyCfg);

答案 1 :(得分:1)

有如何使用linphone取消注册的方法。

获取LinphoneProxyConfig

LinphoneProxyConfig* proxyCfg = NULL;
linphone_core_get_default_proxy([LinphoneManager getLc], &proxyCfg);

从SIP取消注册

linphone_proxy_config_edit(proxyCfg); /*start editing proxy configuration*/
linphone_proxy_config_enable_publish(proxyCfg, TRUE);
linphone_proxy_config_set_publish_expires(proxyCfg, 0);
linphone_proxy_config_enable_register(proxyCfg,FALSE); /*de-activate registration for this proxy config*/
linphone_proxy_config_done(proxyCfg); /*initiate REGISTER with expire = 0*/


while(linphone_proxy_config_get_state(proxyCfg) !=  LinphoneRegistrationCleared){
    NSLog(@"state = %i",linphone_proxy_config_get_state(proxyCfg));
    linphone_core_iterate(lc); /*to make sure we receive call backs before shutting down*/
    ms_usleep(100000);
}

但它只适用于前景中的应用。在后台如果操作系统因任何原因杀死你的应用程序,它就会被杀死。没有通知。您无法捕获SIGKILL信号。查看kill的手册页。

答案 2 :(得分:0)

未完全注册。删除sip扩展名,然后调用刷新寄存器。现在你的软电话从sip取消注册

 [[NSUserDefaults standardUserDefaults] setObject:@"" forKey:@"username_preference"];


if ([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]
        && [UIApplication sharedApplication].applicationState ==  UIApplicationStateBackground
        && [[NSUserDefaults standardUserDefaults] boolForKey:@"disable_autoboot_preference"]) {
        // autoboot disabled, doing nothing
        return;
    } else if ([SipManager instance] == nil) {
        [self startApplication:caldelegate];

    }

    [[LinphoneManager instance] becomeActive];

    if (callCenter == nil) {
        callCenter = [[CTCallCenter alloc] init];
        callCenter.callEventHandler = ^(CTCall* call) {
            // post on main thread
            [self performSelectorOnMainThread:@selector(handleGSMCallInteration:)
                                   withObject:callCenter
                                waitUntilDone:YES];
        };
    }
    // check call state at startup
    [self handleGSMCallInteration:callCenter];

    LinphoneCore* lc = [SipManager getLc];
    LinphoneCall* call = linphone_core_get_current_call(lc);
    if (call == NULL)
        return;

    SipManager* instance = [SipManager instance];
    if (call == instance->currentCallContextBeforeGoingBackground.call) {
        const LinphoneCallParams* params = linphone_call_get_current_params(call);
        if (linphone_call_params_video_enabled(params)) {
            linphone_call_enable_camera(
                                        call,
                                        instance->currentCallContextBeforeGoingBackground.cameraIsEnabled);
        }
        instance->currentCallContextBeforeGoingBackground.call = 0;
    }

答案 3 :(得分:0)

  • 实际上,没有"取消注册" sip服务器的选项。位置服务器将更新为最新的注册信息(包括您的最新IP地址)。

  • 如果您正在讨论如何停止linphone迭代注册,并重新注册到其他SIP服务器。然后按照@Mun Chun的指南

  • 进行操作

答案 4 :(得分:0)

LinphoneCore *lc = [LinphoneManager getLc];
LinphoneProxyConfig *config = linphone_core_get_default_proxy_config(lc);
linphone_proxy_config_edit(config);
linphone_proxy_config_set_expires(config, 0);
linphone_proxy_config_done(config);

答案 5 :(得分:0)

我在Linphone上工作了几个月,我从SIP注销的功能是:

- (void)clearProxies {
    LinphoneProxyConfig *config = linphone_core_get_default_proxy_config(LC); // Get the default proxy configured.

    const LinphoneAuthInfo *ai = linphone_proxy_config_find_auth_info(config);
    linphone_core_remove_proxy_config(LC, config); // Remove the selected proxy config.
    if (ai) {
        linphone_core_remove_auth_info(LC, ai); // Remove the authentication infos.
    }

    linphone_proxy_config_done(config); // Confirm the actual configuration.
}

您必须清除代理配置和身份验证信息并确认新配置。