The Named Pipe Transport has a few options:
Respond to Broadcast
When this option is active, it instructs the server to send back its identification and version number on broadcast requests received via the regular transport being used.
Compress Limit
Compress Limit sets the minimum number of bytes at which the server initiates data compression for sent messages. If a message size is below that value compression is ignored. The server always responds to compressed requests by compressing the answer, even if the size of the answer is below the compression limit.
Port
Port in Named Pipe Transport is merely a unique identifier added to the pipe name. This way it is possible to run multiple Named Pipe Protocols in one or more servers on the same machine. Please note that this has to match with the client side for successful communication.
Server Thread Priority
The Server Thread Priority sets, as the name says the priority of the server thread. The server thread of a transport it the one that actually does the work for each request. Be careful with changing thread priorities as there is a fine balance between the different threads of the server needed to achieve optimal performance. For normal processing mode you should generally leave the priorities at their default settings. Valid settings are tpIdle, tpLowest, tpLower, tpNormal, tpHigher, tpHighest and tpTimeCritical.
Concurrent IOCP Threads
Concurrent IOCP Threads is the number of threads processing IOCP (I/O Completion Port) signals. If this number is 0, it means that there is one thread initialised for each processor in the server machine. For general use, this is the optimal setting. For special purposes, it might be useful to change these settings. Please note that this setting is ignored for machines with a Windows version below Win NT. On these machines, IOCP is not available and is emulated and ignores this setting.
Server Addresses
Finally in the Server Addresses field you see the valid addresses of the server for this transport, which you have to use in the form ServerName@Address for connecting to this server.