本文整理汇总了Python中dialog.Dialog.remote_cseq方法的典型用法代码示例。如果您正苦于以下问题:Python Dialog.remote_cseq方法的具体用法?Python Dialog.remote_cseq怎么用?Python Dialog.remote_cseq使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dialog.Dialog
的用法示例。
在下文中一共展示了Dialog.remote_cseq方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createDialog
# 需要导入模块: from dialog import Dialog [as 别名]
# 或者: from dialog.Dialog import remote_cseq [as 别名]
def createDialog(self, request):
d = Dialog()
r = request
d.local_tag = r.response_totag
d.remote_tag = r.headers['from'].params['tag']
d.callid = r.headers['call-id']
d.local_cseq = 0
d.remote_cseq = int(r.headers['cseq'].number)
d.local_uri = str(r.headers['to'].uri)
d.remote_uri = str(r.headers['from'].uri)
ifc = r.from_interface
d.local_target_uri = ''.join(['sip:', ifc.host, ':', str(ifc.port), ' ;transport=', ifc.transport])
d.remote_target_uri = str(r.headers['contact'][0].uri)
if 'record-route' in request.headers:
rr = request.headers['record-route']
d.route_set = [str(hdr) for hdr in rr]
yield self.dialog_store.put(d)
r.dialog = d
defer.returnValue(d)