Mercurial > libervia-backend
diff libervia/backend/plugins/plugin_xep_0167/__init__.py @ 4245:a7d4007a8fa5
plugin XEP-0272: implement XEP-0272: Multiparty Jingle (Muji)
rel 429
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 15 May 2024 17:34:46 +0200 |
parents | 79c8a70e1813 |
children | 0d7bb4df2343 |
line wrap: on
line diff
--- a/libervia/backend/plugins/plugin_xep_0167/__init__.py Sat May 11 13:52:43 2024 +0200 +++ b/libervia/backend/plugins/plugin_xep_0167/__init__.py Wed May 15 17:34:46 2024 +0200 @@ -17,7 +17,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from typing import Optional -import uuid from twisted.internet import reactor from twisted.internet import defer @@ -579,7 +578,7 @@ elif action == self._j.A_PREPARE_INITIATOR: application_data["peer_data"] = mapping.parse_description(desc_elt) elif action == self._j.A_SESSION_ACCEPT: - pass # self.send_answer_sdp(client, session) + self.send_answer_sdp(client, session) else: log.warning(f"FIXME: unmanaged action {action}")