Is a Interprocess Communication (IPC) using AF_UNIX socket. used to communicate and sharing data between processes.
- Using simple protocol header
- Block I/O until message fully received
- Message payload checksum using CRC32
- Fastly Calculate CRC32 using NEON/ARM Intrinsics
git clone https://github.com/ryszee/unix-ipc.git
cd unix-ipc
mkdir build
cd build
cmake ..
make -j4
run as server :
./ipc-x -s
run as client :
./ipc-x -c
GPL-2.0