我想向ejabbered中的其他用户发送多播消息。
我成功发送了单曲'和' group'消息
//单个聊天
$conn->message($toJabberId, $message, "chat", null, null);
//用于群聊
$conn->presence(NULL, "available", $nickname);
$conn->message($chatroom, $message, "groupchat", null, null);
$conn->presence(NULL, "unavailable", $nickname);
现在我正试图在我的代码中包含多播设施。实际上我有以下示例节的多播,但不知道在xmpphp中使用。
<message to='multicast.jabber.org'>
<addresses xmlns='http://jabber.org/protocol/address'>
<address type='to' jid='hildjj@jabber.org/Work' desc='Joe Hildebrand'/>
<address type='cc' jid='jer@jabber.org/Home' desc='Jeremie Miller'/>
</addresses>
<body>Hello, world!</body>
</message>
使用xmpphp组播消息的想法吗?
感谢。