libipc-old/examples/README.md

27 lines
596 B
Markdown
Raw Permalink Normal View History

2019-06-03 21:25:59 +02:00
# how to compile
make
2019-06-03 21:25:59 +02:00
# how to launch
If libipc is already installed and you have the rights to create unix sockets in the default directory (/run/ipc), just run the code:
./pongd
In case you want to test the library and example programs:
# This is a directory anybody can write in
2019-06-03 21:25:59 +02:00
export IPC_RUNDIR=/tmp
# to test the library without installing it
2019-06-03 21:25:59 +02:00
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../
# finally, run the program, here a pong daemon
2019-06-03 21:25:59 +02:00
./pongd
# same thing in another terminal, to test the client
2019-06-03 21:25:59 +02:00
export IPC_RUNDIR=/tmp
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../
./pong