免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1989 | 回复: 0
打印 上一主题 下一主题

reSIProcate:Typical DUM callflow [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-22 14:26 |只看该作者 |倒序浏览

                一 Typical DUM callflow is:
Client Side:
1.  Call dum.makeInviteSession
2.  Add SDP (if required)
3.  dum.send to send invite.
4.  onNewSession gets called on first response from server with status >
100.
5.  onProvisional gets called if server responds with a 1xx response
(excluding 100)
6.  onConnected gets called when server responds with a 2xx response.
ackConnection should then be called on the ClientInviteSession.
...
7.  To disconnect:  on the ClientInviteSession - call cis.send(cis.end()) -
this will send the BYE request.
8.  onTerminated is then called after receiving the 200 response to the BYE.
Server Side
1.  onNewSession gets called when an inbound INVITE is received.
2.  Server can then use ServerInviteSession to send provisional() - if
required.
3.  Server uses ServerInviteSession to send accept() - adding any required
SDP.  This sends the 200 response to the client.
...
4.  onTerminated is called when client sends BYE.  DUM sends the 200
response.
二 关于实例化DUM个数的问题
在reSIProcate wiki资料中说"a single DUM can be shared by multiple UAs."就是多个UA(User Agent)可以共用一个DUM(Dialog Usage Manager,会话管理器)。
那为什么在reSIProcate代码中的resiprocate-1.5\resip\dum\test\BasicCall.cxx中用了两个DUM呢?如下:
   SipStack stackUac;
   DialogUsageManager* dumUac = new DialogUsageManager(stackUac);
   SipStack stackUas;
   DialogUsageManager* dumUas = new DialogUsageManager(stackUas);
两个SipStack,两个DUM。
这是因为该例子是用于实现本机呼叫本机,即本机上同时登陆两个用户,用不同的端口,这两个用户之间呼叫。
One DUM is recommended.  BasicCall is setup so that it can call itself
(on a different port and stack instance) for demo/test purposes only.
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/108006/showart_2127931.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP