1

我使用以下源https://github.com/kallaspriit/PHP-HTML5-WebSocket-Server使用绘图执行了 Web 套接字

我能够运行适用于 FF 和 chrome 浏览器但不适用于 safari 的脚本。据我所知,这可能与 safari 中使用的握手有关(与 FF 和 chrome 不同)。

在类 SocketServer.php 我发现以下规则:

$headers = $this->parseRequestHeader($buffer);

if (isset($headers['Sec-WebSocket-Key'])) {
    $key = $headers['Sec-WebSocket-Key'];
} else {
    $key = $headers['Sec-WebSocket-Key1'];
}
$hash = base64_encode(
        sha1($key . '258EAFA5-E914-47DA-95CA-C5AB0DC85B11', true)
);

/ ff 和 chrome 在 header 中存在 Sec-WebSocket-Key,safari 有 Sec-WebSocket-Key1 和 Sec-WebSocket-Key2 /

if (isset($headers['Sec-WebSocket-Key'])) {
    $headers = array(
        'HTTP/1.1 101 Switching Protocols',
        'Upgrade: websocket',
        'Connection: Upgrade',
        'Sec-WebSocket-Accept: ' . $hash
    );
} else {
    $headers = array(
        "HTTP/1.1 101 Web Socket Protocol Handshake",
        "Upgrade: WebSocket",
        "Connection: Upgrade",
        "WebSocket-Origin: http://localhost",
        "WebSocket-Location: ws://localhost:9300",
    );
}

$headers = implode("\r\n", $headers) . "\r\n\r\n";
$left = strlen($headers);

do {
    $sent = @socket_send($this->socket, $headers, $left, 0);

    if ($sent === false) {
        $error = $this->server->getLastError();

        throw new Exception(
                'Sending handshake failed: : ' . $error->message .
                ' [' . $error->code . ']'
        );
    }

    $left -= $sent;

    if ($sent > 0) {
        $headers = substr($headers, $sent);
    }
} while ($left > 0);

$this->state = self::STATE_OPEN;

}

我试图改变 safari 的头条新闻,但没有任何效果。Safari 同时连接我并断开连接 - 我认为问题是由这些头条新闻引起的,我不知道如何自定义它们以正常工作。有谁知道如何修改代码以支持 safari 以及其他浏览器?

4

1 回答 1

0

看起来 WebSocket 服务器已经 9 个月没有更新了。因此,我建议您查看替代的 PHP WebSocket 解决方案,例如正在积极开发的Ratchet 。

于 2012-12-12T13:22:18.947 回答