[HIXIE] Reverting back to the proper response code.

Silly hixie, tricks are for kids
This commit is contained in:
Mike Almond 2012-02-01 21:21:11 -05:00
parent 10da7e4920
commit 576eee0816

View File

@ -38,7 +38,7 @@ class Hixie76 implements VersionInterface {
$headers['Sec-WebSocket-Protocol'] = $request->getHeader('Sec-WebSocket-Protocol'); $headers['Sec-WebSocket-Protocol'] = $request->getHeader('Sec-WebSocket-Protocol');
} }
$response = new \Guzzle\Http\Message\Response('HTTP/1.1 101 WebSocket Protocol Handshake', $headers, $body); $response = new \Guzzle\Http\Message\Response('101', $headers, $body);
return $response; return $response;
} }