Remove unused function

Just a bit of code cleanup
This commit is contained in:
bmc 2013-07-09 23:35:13 -05:00 committed by Brian Carlson
parent e778348fe1
commit a69cb0d36f

View File

@ -297,19 +297,6 @@ Connection.prototype.setBuffer = function(buffer) {
this.offset = 0;
};
Connection.prototype.readSslResponse = function() {
var remaining = this.buffer.length - (this.offset);
if(remaining < 1) {
this.lastBuffer = this.buffer;
this.lastOffset = this.offset;
return false;
}
return {
name: 'sslresponse',
text: this.buffer[this.offset++]
};
};
Connection.prototype.parseMessage = function() {
var remaining = this.buffer.length - (this.offset);
if(remaining < 5) {