ssh2-promise
Version:
Promise wrapper around SSH2 library
21 lines (20 loc) • 420 B
JavaScript
let Constants = {
"CHANNEL": {
SSH: "ssh",
TUNNEL: "tunnel",
X11: "x11"
},
"STATUS": {
BEFORECONNECT: "beforeconnect",
CONNECT: "connect",
BEFOREDISCONNECT: "beforedisconnect",
DISCONNECT: "disconnect"
},
"HOPPINGTOOL": {
NETCAT: 'nc',
SOCAT: 'socat',
NATIVE: 'native'
}
};
module.exports = Constants;
;