From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePsnz-0000Mq-3t for qemu-devel@nongnu.org; Fri, 15 Dec 2017 11:25:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePsnu-0008Az-3q for qemu-devel@nongnu.org; Fri, 15 Dec 2017 11:25:47 -0500 Received: from indium.canonical.com ([91.189.90.7]:55856) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePsnt-00087v-TV for qemu-devel@nongnu.org; Fri, 15 Dec 2017 11:25:42 -0500 Received: from loganberry.canonical.com ([91.189.90.37]) by indium.canonical.com with esmtp (Exim 4.86_2 #2 (Debian)) id 1ePsnr-0005bD-Az for ; Fri, 15 Dec 2017 16:25:39 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 01EDB2E80DC for ; Fri, 15 Dec 2017 16:25:39 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 15 Dec 2017 16:19:04 -0000 From: Thomas Huth <1732671@bugs.launchpad.net> Reply-To: Bug 1732671 <1732671@bugs.launchpad.net> Sender: bounces@canonical.com References: <151083063268.1193.17138246799552738242.malonedeb@chaenomeles.canonical.com> Message-Id: <151335474458.11701.5150982214516174727.launchpad@gac.canonical.com> Errors-To: bounces@canonical.com Subject: [Qemu-devel] [Bug 1732671] Re: vnc websocket compatibility issue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org ** Changed in: qemu Status: Fix Committed =3D> Fix Released -- = You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1732671 Title: vnc websocket compatibility issue Status in QEMU: Fix Released Bug description: WebSocket support in VNC should allow access from VNC client through upgraded WebSocket connection. This feature is not working in IE 11/Edge with noVNC HTML5 client, in contrast to that in Firefox/Safari, etc. The reason that IE 11/Edge fails to accept the connection upgrade is that the value equality of the `Upgrade` header field is checked in a strict case-sensitive manner in QEMU side, however, the IE/Edge does not send the exactly same string value `websocket` but a capital letter `W` instead. Defined in section 4.2.1 of rfc6455, the upgrade header field shall be treated case-insensitively. A patch shall be made in `io/channel-websock.c`, converting the value of upgrade string to lowercase before comparison is made with QIO_CHANNEL_WEBSOCK_UPGRADE_WEBSOCKET, to allow case-insensitive comparison in the process. To manage notifications about this bug go to: https://bugs.launchpad.net/qemu/+bug/1732671/+subscriptions