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

roar_socket_nonblock - Sets blocking state of a socket

#include <roaraudio.h>

int roar_socket_nonblock(int fh, int state);

Sets the blocking mode of a given filehandle. For information on nonblocking IO see open(2) an look for O_NONBLOCK.

The filehandle to set the new state on.

The new state. This may be ROAR_SOCKET_BLOCK to sett blocking or ROAR_SOCKET_NONBLOCK to set nonblocking mode. ROAR_SOCKET_NONBLOCK is the same as setting O_NONBLOCK within open(2).

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

FIXME

open(2), libroar(7), RoarAudio(7).

May 2011 RoarAudio