mxmbsocket/lib/Ratchet/Protocol/WebSocket/Version/Hixie76.php
2011-10-28 15:15:23 -04:00

28 lines
512 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket\Version;
/**
* The Hixie76 is currently implemented by Safari
* Not yet complete
*/
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) {
}
}