Skip to content
Snippets Groups Projects
Commit 25f6bcee authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

support for killing the child process with OOB data

Rev: NT/tools/sprshd:1.20
parent ac77cc33
No related branches found
No related tags found
No related merge requests found
...@@ -73,16 +73,6 @@ void monitor(object(Stdio.File) io, object proc) ...@@ -73,16 +73,6 @@ void monitor(object(Stdio.File) io, object proc)
} }
} }
#ifdef WINE
void my_proxy(Stdio.File from, Stdio.File to)
{
while(string s=from->read(128,1))
if(to->write(s)!=strlen(s))
return;
}
#endif
string opt_path(string p1, string p2) string opt_path(string p1, string p2)
{ {
return ( ( ((p1||"") + ";" + (p2||"")) / ";" ) - ({""}) ) * ";"; return ( ( ((p1||"") + ";" + (p2||"")) / ";" ) - ({""}) ) * ";";
...@@ -220,6 +210,14 @@ void handle_incoming_connection(object(Stdio.File) io) ...@@ -220,6 +210,14 @@ void handle_incoming_connection(object(Stdio.File) io)
default: default:
#ifdef WINE #ifdef WINE
void my_proxy(Stdio.File from, Stdio.File to)
{
while(string s=from->read(128,1))
if(to->write(s)!=strlen(s))
return;
if(p) p->kill(9); /* DIE! */
}
{ {
werror("Proxying.....\n"); werror("Proxying.....\n");
object p3=Stdio.File(); object p3=Stdio.File();
...@@ -233,6 +231,22 @@ void handle_incoming_connection(object(Stdio.File) io) ...@@ -233,6 +231,22 @@ void handle_incoming_connection(object(Stdio.File) io)
} }
#endif #endif
#if __VERSION__ >= 0.699999
write("Trapping OOB\n");
if(io->read_oob)
{
thread_create(lambda() {
while(1)
{
string tmp=io->read_oob(1);
if(!tmp || !sizeof(tmp)) return;
werror("**Interrupt received, killing child.\n");
p->kill(9);
}
});
}
#endif
mixed err=catch { mixed err=catch {
p=Process.create_process(cmd, p=Process.create_process(cmd,
([ ([
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment