-
Notifications
You must be signed in to change notification settings - Fork 744
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
Option to run mosh-server in the foreground #1091
Comments
+1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be useful to have an option
[-D]
to run mosh-server without detaching from the terminal for scripts that want to wrap mosh-server execution.Currently the only to wait for mosh-server to terminate is poling with
kill(pid, 0)
, or configuring the wrapper to be a process reaper (PR_SET_CHILD_SUBREAPER
on Linux, orPROC_REAP_ACQUIRE
on BSD, and the wrapper then also has to handleSIGCHLD
).The text was updated successfully, but these errors were encountered: