mxmbsocket/lib/Ratchet/Protocol/WebSocket/Version/Hixie76.php
Chris Boden 51d0516aa3 Cleanup
Application stack working!
Existing unit tests fixed
Implemented HyBi-10 unframing
2011-10-28 14:12:39 -04:00

24 lines
434 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket\Version;
class Hixie76 implements VersionInterface {
public function handshake(array $headers) {
}
public function unframe($message) {
}
public function frame($message) {
}
public function sign($key) {
}
/**
* What was I doing here?
* @param Headers
* @return string
*/
public function concatinateKeyString($headers) {
}
}