When reading current lib/connection.js implementation ( commit 7dff82f ) I noticed that the passive socket reference is mainly written as _pasvSock but sometimes written _pasvSocket (with the trailing characters 'et' ):
Defined at L60 this._pasvSock = undefined;
Used as _pasvSocket in both _pasvConnect() L903, _send() L1034 methods.
But again written as _pasvSock in _reset() L1053 method.
Did I miss the usage of the two different references with different meaning or may it be a typo ?
When reading current
lib/connection.js
implementation ( commit 7dff82f ) I noticed that the passive socket reference is mainly written as_pasvSock
but sometimes written_pasvSocket
(with the trailing characters 'et' ): Defined at L60this._pasvSock = undefined;
Used as_pasvSocket
in both_pasvConnect()
L903,_send()
L1034 methods. But again written as_pasvSock
in_reset()
L1053 method.Did I miss the usage of the two different references with different meaning or may it be a typo ?