DOKK / manpages / debian 10 / libroar-dev / roar_disconnect.3.en
roar_connectionref(3) System Manager's Manual: RoarAudio roar_connectionref(3)

roar_connectionref, roar_connectionunref - change reference counter for RoarAudio connections

#include <roaraudio.h>

int roar_connectionref(struct roar_connection * con);

int roar_connectionunref(struct roar_connection * con);

#define roar_disconnect(x) roar_connectionunref((x))

Those functions change the reference counter for connection objects previously opend via roar_connect(3), roar_connect_fh(3) or roar_simple_connect(3). If the reference counter hints zero the connection is closed and the object is destroyed.

The roar_disconnect(3) macro is provided to be source compatible (recompile needed) with RoarAudio 0.4 or older.

The connection to be altered.

On success these calls return 0. On error, -1 is returned.

FIXME

roar_simple_connect(3), libroar(7), RoarAudio(7).

May 2011 RoarAudio