1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00

No need for VNC "fingerprint" anymore.

This commit is contained in:
Simo Kinnunen 2015-10-13 04:04:23 +09:00
parent 5216eac5ce
commit d55ce41214

View file

@ -7,7 +7,6 @@ var debug = require('debug')('vnc:connection')
var Promise = require('bluebird')
var PixelFormat = require('./pixelformat')
var vncauth = require('../../../../../util/vncauth')
function VncConnection(conn, options) {
this.options = options
@ -315,7 +314,6 @@ VncConnection.prototype._unguardedRead = function() {
if ((chunk = this._consume(16))) {
this._auth(VncConnection.SECURITY_VNC, {
response: chunk
, fingerprint: vncauth.format(chunk)
})
return
}