Merge pull request #200 from si458/patch-1
allow all users to access the pipe
This commit is contained in:
commit
3fdbb35e53
1 changed files with 5 additions and 4 deletions
|
@ -308,10 +308,11 @@ function startServer() {
|
|||
this.path= `\\\\.\\pipe\\${this.path}`;
|
||||
}
|
||||
|
||||
this.server.listen(
|
||||
this.path,
|
||||
this.onStart.bind(this)
|
||||
);
|
||||
this.server.listen({
|
||||
path: this.path,
|
||||
readableAll: true,
|
||||
writableAll: true
|
||||
}, this.onStart.bind(this));
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue