We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e778348 commit a69cb0dCopy full SHA for a69cb0d
lib/connection.js
@@ -297,19 +297,6 @@ Connection.prototype.setBuffer = function(buffer) {
297
this.offset = 0;
298
};
299
300
-Connection.prototype.readSslResponse = function() {
301
- var remaining = this.buffer.length - (this.offset);
302
- if(remaining < 1) {
303
- this.lastBuffer = this.buffer;
304
- this.lastOffset = this.offset;
305
- return false;
306
- }
307
- return {
308
- name: 'sslresponse',
309
- text: this.buffer[this.offset++]
310
- };
311
-};
312
-
313
Connection.prototype.parseMessage = function() {
314
var remaining = this.buffer.length - (this.offset);
315
if(remaining < 5) {
0 commit comments