UNPKG
@vinothnb/smb2
Version:
latest (0.18.0)
0.18.0
SMB2 Client
github.com/vinothnb/marsaud-smb2
vinothnb/marsaud-smb2
@vinothnb/smb2
/
lib
/
api
/
disconnect.js
15 lines
(13 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
SMB2Connection
=
require
(
'../tools/smb2-connection'
);
/* * close * ===== * * close your connection to the SMB2 server * * - close TCP connection * */
module
.
exports
=
function
disconnect
(
) {
SMB2Connection
.
close
(
this
); };