使用PJSIP向多个设备发送Asterisk MessageSend

问题描述 投票:0回答:1

我目前使用WebRTC进行设置 - > Asterisk,我可以在其中调用和发送消息。当我从A - > B拨打电话时,所有B的注册设备都会被呼叫(因此,如果他多次登录)。

但是,使用MessageSend,SIP消息仅传递给一个已注册的,而不是全部。如何将其发送到所有已注册的设备?

是否有可能,如果没有其他方式可以在Asterisk内完成?

(使用Asterisk 15.5)。

谢谢!

webrtc asterisk sip pjsip
1个回答
0
投票

Asterisk(至少在使用PJSIP时)和给定端点剥离任何URI详细信息,并且仅使用端点,并且不会遍历所有已注册的联系人。

来自message.c'msg_send_exec'从res_pjsip messaging.c获取出站'get_outbound endpoint'

/* attempt to extract the endpoint name */
if ((aor_uri = strchr(name, '/'))) {
    /* format was 'endpoint/(aor_name | uri)' */
    *aor_uri++ = '\0';
} else if ((aor_uri = strchr(name, '@'))) {
    /* format was 'endpoint@domain' - discard the domain */
    *aor_uri = '\0';

    /*
     * We may want to match without any user options getting
     * in the way.
     */
    AST_SIP_USER_OPTIONS_TRUNCATE_CHECK(name);
}

/* at this point, if name is not empty then it
   might be an endpoint, so try to retrieve it */
if (ast_strlen_zero(name)
    || !(endpoint = ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), "endpoint",
        name))) {
    /* an endpoint was not found, so assume sending directly
       to a uri and use the default outbound endpoint */
    *uri = ast_strdup(to);
    return ast_sip_default_outbound_endpoint();
}

根据我的理解,如果你只使用一个URI(比如pjsip:123.12.123.12:1234),那么它只会寻找始终相同的默认端点。

© www.soinside.com 2019 - 2024. All rights reserved.