Browse Source
Start to implement #985
Start to implement #985
Uppercase DTLS fingerprints to prevent some issues with Firefoxpull/1009/head
10 changed files with 198 additions and 1 deletions
-
32app/widgets/Visio/Visio.php
-
22app/widgets/Visio/visio.css
-
34app/widgets/Visio/visio.js
-
7app/widgets/Visio/visio.tpl
-
16app/widgets/Visio/visio_utils.js
-
2lib/JingletoSDP.php
-
40lib/moxl/src/Stanza/Jingle.php
-
19lib/moxl/src/Xec/Action/Jingle/SessionMute.php
-
19lib/moxl/src/Xec/Action/Jingle/SessionUnmute.php
-
8lib/moxl/src/Xec/Payload/Jingle.php
@ -0,0 +1,19 @@ |
|||
<?php |
|||
|
|||
namespace Moxl\Xec\Action\Jingle; |
|||
|
|||
use Moxl\Xec\Action; |
|||
use Moxl\Stanza\Jingle; |
|||
|
|||
class SessionMute extends Action |
|||
{ |
|||
protected $_to; |
|||
protected $_id; |
|||
protected $_name = false; |
|||
|
|||
public function request() |
|||
{ |
|||
$this->store(); |
|||
Jingle::sessionUnmute($this->_to, $this->_id, $this->_name); |
|||
} |
|||
} |
|||
@ -0,0 +1,19 @@ |
|||
<?php |
|||
|
|||
namespace Moxl\Xec\Action\Jingle; |
|||
|
|||
use Moxl\Xec\Action; |
|||
use Moxl\Stanza\Jingle; |
|||
|
|||
class SessionUnmute extends Action |
|||
{ |
|||
protected $_to; |
|||
protected $_id; |
|||
protected $_name = false; |
|||
|
|||
public function request() |
|||
{ |
|||
$this->store(); |
|||
Jingle::sessionMute($this->_to, $this->_id, $this->_name); |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue