mxmbsocket/lib/Ratchet/Protocol/WebSocket/Version/Hixie76.php
Chris Boden ed1a35ff74 HyBi-10 handshake
Hackishly implemented the HyBi-10 handshake
2011-10-27 13:07:24 -04:00

25 lines
427 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket\Version;
class Hixie76 implements VersionInterface {
protected $_headers = array();
public function __construct(array $headers) {
}
/**
* @param Headers
* @return string
*/
public function concatinateKeyString($headers) {
}
/**
* @param string
* @return string
*/
public function sign($key) {
}
}