1 @page dwx_ipc_socketclientserver_sample Socket Inter-Process Communication Sample
3 The socket inter-process communication sample demonstrates
4 simple IPC functionalities using network sockets.
6 ## Running the Socket Client / Server Sample
10 - Server Process: `./sample_ipc_socketclientserver --role=server --port=49252`
11 - Client Process: `./sample_ipc_socketclientserver --role=client --port=49252 --ip=127.0.0.1`
14 - `--role` is either "client" or "server" (required).
15 - `--port` is the port the server will listen on / the client will connect to (optional).
16 - `--ip` is the server IP the client connects to (optional).
20 In the sample the client generates random values, sends them to the server, who echoes them back.