You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following send function register event handler this.on('data', sendHandler) too later, sometimes if telnet server send response quickly enough, sendHandler will not be triggered because the response come in before event handler registered, , causing high lever locked if we use waitfor parameter. I have attached a fix for this issue, the fix works perfect in my testing.
The following send function register event handler this.on('data', sendHandler) too later, sometimes if telnet server send response quickly enough, sendHandler will not be triggered because the response come in before event handler registered, , causing high lever locked if we use waitfor parameter. I have attached a fix for this issue, the fix works perfect in my testing.
index.zip
send(data, opts, callback) {
if (opts && opts instanceof Function) callback = opts
}
The text was updated successfully, but these errors were encountered: