Using TCP vs pipes #665
Unanswered
derekschrock
asked this question in
Q&A
Replies: 1 comment 3 replies
-
|
Good questions @derekschrock . I'm not an expert in security. There is no auth implemented for IPC. (Previous versions of this project also had no auth for gRPC or temp directory.) Could use Unix sockets, but that's specific to Unix, meaning: one more implementation of the sender/receiver, and still have to keep the TCP one for Windows. (Did strike for simplicity for this early release.) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Are there any security issues with using localhost/TCP for ICP with with 4.x release? In theory could a local user write/talk to the open connection or does bear have some type of auth/handshake that make this less of an issue? Assuming I don't have any thing wrong with the previous questions, would a unix pipe if the platform supports it be better and only use TCP if needed?
Beta Was this translation helpful? Give feedback.
All reactions