allow all users to access the pipe
This commit is contained in:
parent
50c0ec6735
commit
f0c64a8282
1 changed files with 5 additions and 4 deletions
|
@ -308,10 +308,11 @@ function startServer() {
|
||||||
this.path= `\\\\.\\pipe\\${this.path}`;
|
this.path= `\\\\.\\pipe\\${this.path}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.server.listen(
|
this.server.listen({
|
||||||
this.path,
|
path: this.path,
|
||||||
this.onStart.bind(this)
|
readableAll: true,
|
||||||
);
|
writableAll: true
|
||||||
|
}, this.onStart.bind(this));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue