I have some named pipes used for inter process communication. I don't want that these pipes are accessible from outside. Microsoft
documenation says for CreateNamedPipe that I have to deny access to the pipe to the NETWORK ACE. I'm not a specilist in poking
around with ACE, DACL etc.
I found that I need to play with these functions InitializeAcl, AddAccessAllowedAce, AddAccessDeniedAce,
InitializeSecurityDescriptor, and SetSecurityDescriptorDacl.
Any idea where I can find an example code in C/C++ for this?
Thanks for your help.
Dorel Sturm