On Nov 15, 12:24 pm, Tim Caswell <[email protected]> wrote: > Great work! I've been wanting something like this for a long time. One > quick question though. Is it possible to both spawn a child process and > use it's stdio as raw binary data (no tty metadata) *and* spawn a tty > powered child (like bash -l) in the same connection? I never could find a > way to do this with shelling out to ssh, but maybe by implementing the > protocol you have more flexibility is what can be done.
Yes, all of the functionality you see can be done within the same connection to the server because SSH2 allows multiplexing. For example, you could have 10 ptys open while executing 75 child processes and forwarding connections to the server. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
