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

15 lines
249 B
PHP

<?php
namespace Ratchet\Protocol\WebSocket\Version;
interface VersionInterface {
/**
* @param array
*/
function __construct(array $headers);
/**
* @param string
* @return string
*/
function sign($header);
}