summaryrefslogtreecommitdiffstats
path: root/lib/libsndio/aucat.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add forgotten copyright notice, found by Jason Thorpe <thorpej at me.com>.ratchov2019-07-051-0/+17
| | | | Thanks!
* Don't remove the type component from the device string before passingratchov2015-11-221-1/+1
| | | | | it to the *_open() functions. It's more flexible this way. No behaviour change.
* Prefix by '_' symbols that are not part of the API.ratchov2013-11-131-9/+9
| | | | ok deraadt, guenther
* Use dedicated messages for flow control instead of abusing clock tickratchov2012-11-021-0/+1
| | | | | | messages and enable flow control for MIDI. Since this requires protocol version bump, both sndiod and libsndio must be kept up to date to work together.
* Add a "device number" component in sndio(7) device names, allowing aratchov2011-11-151-1/+1
| | | | | | | | | | | | | | | | single aucat instance to handle all audio and MIDI services. Since this partially breaks compatibility, this is a opportunitiy to fix few other design mistakes (eg ':' being used by inet6, type name vs api name confusion, etc..). This leads to the following names: type[@hostname][,unit]/devnum[.option] The device number is the minor device number for direct hardware access (ie the 'N' in /dev/audioN). For aucat, this is the occurence number of the -f (or -M) option. There's a compatibility hook to keep old names working if only one aucat server is running.
* Remove midicat since aucat can now be used instead of midicatratchov2011-10-171-1/+1
| | | | | | | | | with almost the same syntax (roughly an extra -M option). Thru boxes are created with aucat, and corresponding MIDI port names have the "aucat" prefix instead of "midithru". The old device name will still work some time for backward compatibility. ok deraadt
* slightly cleanup by separating socket-specific code fromratchov2011-04-181-1/+1
| | | | protocol specific code. No behaviour change
* Make aucat audio and midi backends share the same code to communicateratchov2011-04-161-0/+29
with the server. As we're at it use the same protocol for midi and audio. Now, both audio and midi code use the same SNDIO_DEBUG environment variable to turn on/off DPRINTF's.