How can i read/write in a remote /dev/audio device?
I use this code for the local device:
int fd open ( "/dev/audio", O_WRONLY|O_NONBLOCK);
write (fd, v_Buffer, v_Long_Buffer);
How can i get the /dev/audio from a remote machine?
Thanks
