libpgm

Implements PGM reliable multicast protocol for network messaging

brewmacoslinux
Try with needOr install directly
Source

About

Implements the PGM reliable multicast protocol

Examples

build applications that use reliable multicast messaging$ gcc -I/usr/local/include -L/usr/local/lib myapp.c -lpgm -o myapp
link pgm library in cmake project$ find_package(PGM REQUIRED) in CMakeLists.txt
check if pgm library is installed correctly$ pkg-config --cflags --libs libpgm-5.2
use pgm for one to many network communication$ gcc -DPGM_ENABLED myapp.c -lpgm -o myapp
develop multicast applications with guaranteed delivery$ cat /usr/local/include/pgm/pgm.h