Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow options to be provided to child_process.send() #5283

Merged
merged 2 commits into from
Feb 22, 2016

Commits on Feb 22, 2016

  1. child_process: support options in send()

    This commit adds an options object to process.send(). The same
    object is propagated to process._send(), the _handleQueue, and the
    send() and postSend() functions of the handle converter.
    
    Fixes: nodejs#4271
    PR-URL: nodejs#5283
    Reviewed-By: James M Snell <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    cjihrig committed Feb 22, 2016
    Configuration menu
    Copy the full SHA
    1952844 View commit details
    Browse the repository at this point in the history
  2. child_process: add keepOpen option to send()

    This option allows an instance of net.Socket to be kept open in
    the sending process.
    
    Fixes: nodejs#4271
    PR-URL: nodejs#5283
    Reviewed-By: James M Snell <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    cjihrig committed Feb 22, 2016
    Configuration menu
    Copy the full SHA
    e854f60 View commit details
    Browse the repository at this point in the history