(boundAddr, boundPort, remoteAddr, remotePort, cb)
| 1293 | } |
| 1294 | |
| 1295 | forwardOut(boundAddr, boundPort, remoteAddr, remotePort, cb) { |
| 1296 | const opts = { boundAddr, boundPort, remoteAddr, remotePort }; |
| 1297 | openChannel(this, 'forwarded-tcpip', opts, cb); |
| 1298 | return this; |
| 1299 | } |
| 1300 | |
| 1301 | openssh_forwardOutStreamLocal(socketPath, cb) { |
| 1302 | const opts = { socketPath }; |
nothing calls this directly
no test coverage detected