PIPE_ACCESS_OUTBOUND top-level constant

int const PIPE_ACCESS_OUTBOUND

The flow of data in the pipe goes from server to client only. This mode gives the server the equivalent of GENERIC_WRITE access to the pipe. The client must specify GENERIC_READ access when connecting to the pipe. If the client must change pipe settings by calling the SetNamedPipeHandleState function, the client must specify GENERIC_READ and FILE_WRITE_ATTRIBUTES access when connecting to the pipe.

Implementation

const PIPE_ACCESS_OUTBOUND = 0x00000002;