0

我正在查看 csipsimple 应用程序 - 使用 sip 调用、寄存器。我还发现 samplecsipsimple 使用 csipsimple 作为库将 sip 客户端注册到 sip 服务器。我想如何使用 csipsimple 作为库在 wifi 上创建出站呼叫和入站呼叫?

需要一些帮助。欣赏

4

1 回答 1

0

由于 CSipSimple 使用 pjsua 包装器,您应该看一下simple-pjsua程序。而且由于 Java 中没有回调机制,因此您将无法使用回调(例如 on_call_state)。所以你需要做的是扩展Callback类并覆盖它的所有方法。查看代码是如何完成的。

于 2012-06-21T15:12:55.097 回答