This seems like a trivial question for me, but I could not find the answer for it.. I am trying to think of a module of master and multiple slaves (Sends all of them data and receives from all of them results), and I've been looking to some IPC methods, I see that Named Pipes select the communication channel for me(if the process is on the same computer or not),
But boost seems to refer me to interprocess, if I want shared_memory, or asio, if I want network communication, but I want both! and I want it to select it automatically for me (in Named Pipes manner).
Does anyone know if boost supports such an operation?
Thanks, Alon