Commit 6ff56c04 authored by simon's avatar simon

test: disable resume

parent 958a5dbe
...@@ -400,7 +400,8 @@ export class EAPTTLS implements IEAPMethod { ...@@ -400,7 +400,8 @@ export class EAPTTLS implements IEAPMethod {
connection.events.on('incoming', incomingMessageHandler); connection.events.on('incoming', incomingMessageHandler);
connection.events.on('response', responseHandler); connection.events.on('response', responseHandler);
connection.events.on('secured', () => { connection.events.on('secured', () => {
connection.events.emit('decrypt', data); log('secured, resetting last identifier due to weird MS bug');
this.lastProcessedIdentifier.set(stateID, undefined);
}); });
// emit data to tls server // emit data to tls server
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment