Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tls: fix typo
handle._reading
=> handle.reading
The problem does not manifest itself on unixes, because `uv_read_start()` always return 0 there. However on Windows on a second call `uv_read_start()` returns `UV__EALREADY` destroying all sockets on a read attempt. Set `.reading` property that is already handled by `net.js` code. Fix: #988 PR-URL: #994 Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
- Loading branch information