more entropy on session id

all tests passing
This commit is contained in:
Ben Connito 2014-08-07 13:35:01 -04:00
parent 29e22a0a2e
commit 705423e0b3
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class WampConnection extends AbstractConnectionDecorator {
parent::__construct($conn);
$this->WAMP = new \StdClass;
$this->WAMP->sessionId = uniqid();
$this->WAMP->sessionId = md5(uniqid(mt_rand(), true));
$this->WAMP->prefixes = array();
$this->send(json_encode(array(WAMP::MSG_WELCOME, $this->WAMP->sessionId, 1, \Ratchet\VERSION)));

View File

@ -81,7 +81,7 @@ class TopicTest extends \PHPUnit_Framework_TestCase {
$topic->add($first);
$topic->add($second);
$topic->add($third);
$topic->broadcast($msg, array($second->WAMP->sessionId));
}