mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
Message Session Relay Protocol (MSRP) is a protocol for transmitting a series of related instant messages in the context of a session. Message sessions are treated like any other media stream when set up via a rendezvous or session creation protocol such as the Session Initiation Protocol (SIP). WWW: http://sipsimpleclient.com/wiki/SipMSRPApi PR: ports/158980 Submitted by: Eugene Grosbein <ports@grosbein.net> Approved by: jadawin@ (mentor)
11 lines
465 B
Python
11 lines
465 B
Python
--- msrplib/session.py.orig 2011-07-16 22:38:18.000000000 +0700
|
|
+++ msrplib/session.py 2011-07-16 22:38:31.000000000 +0700
|
|
@@ -391,7 +391,7 @@
|
|
If chunk's Failure-Report is 'no', return None immediately.
|
|
"""
|
|
if chunk.failure_report!='no' and event is None:
|
|
- event = coros.event()
|
|
+ event = event.Event()
|
|
self.send_chunk(chunk, event.send)
|
|
if event is not None:
|
|
response = event.wait()
|