summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2008-11-23Use file input parameter as default device output and file output parametersAlexandre Ratchov
as default device input. That's what the man page says
2008-11-22sync with sudo repoTodd C. Miller
2008-11-21packet_disconnect() on padding error, too. should reduce the successMarkus Friedl
probability for the CPNI-957037 Plaintext Recovery Attack to 2^-18 ok djm@
2008-11-20KNF; only white space changesOtto Moerbeek
2008-11-20take into account socket parameters into calculation of deviceAlexandre Ratchov
parameters; without this change aucat uses the device default parameters and they are not necessarily usable for multi-stream mode.
2008-11-18fix check_aliasesTodd C. Miller
2008-11-18when destroying an alias, free the correct data pointerTodd C. Miller
2008-11-18standardize on the term 'option' for command line options (not flag)Todd C. Miller
2008-11-17- rename -s arg name to "socket"Jason McIntyre
- condense EXAMPLES into a single screenful ok ratchov
2008-11-17- stop referring to the display as consisting of windows. we can explainJason McIntyre
it more simply and cut out a lot of needless verbosity. - stop mixing terminology: view vs. display - "delay" overrides "-s delay", not "-w wait" - use "quit" as mnemonic for quit, not "exit" - ...and just generally clean the page up ok canacar
2008-11-17tweak previous man page changes, and sync usage();Jason McIntyre
2008-11-17in server mode full-duplex device is no more requierd, removeAlexandre Ratchov
corresponding entry from BUGS section
2008-11-17allow aucat to run as server in play-only and record-only mode, soAlexandre Ratchov
it can be used on play-only, record-only and half-duplex devices. ok jakemsr
2008-11-16trigger rproc->eof() and and wproc->hup() if POLLHUP event is set.Alexandre Ratchov
Fixes aucat sleeping forever when the devices disappears
2008-11-16aucat stops the device when idle, remove the correspondingAlexandre Ratchov
entry from BUGS section.
2008-11-16allow aucat to listen on multiple sockets. Each socket carries itsAlexandre Ratchov
channel and volume settings allowing multiple configuration to coexist. Mostly useful for envy(4)-like devices, but can be used to force different apps to use different settings.
2008-11-16add ``template'' parameters to sockets rather than using deviceAlexandre Ratchov
parameters. No functional change.
2008-11-16tweak previous;Jason McIntyre
2008-11-16make aucat compile without DEBUG defined (still defined by default)Alexandre Ratchov
2008-11-16in file_poll() the number of polled file structures is not equal to theAlexandre Ratchov
number of polled descriptors. Count the number of polled structrues to detect deadlocks rather than the number of descriptors, avoinding false positives.
2008-11-16Make clients inherit the volume parameter when the -v option is used inAlexandre Ratchov
server mode. It gives the maximum volume a client may have. This wastes dynamic range, but allows volume to stay constant when other clients connect or disconnect.
2008-11-15update the readme a bit by deleting most of the irrelevant info, such as msdosTed Unangst
support and who to mail for 5" floppies... ok kjell
2008-11-15classic C compatibility (no statements before decls)Theo de Raadt
2008-11-14add back acsite.m4Todd C. Miller
2008-11-14Upgrade to sudo 1.7. See the WHATSNEW files for details.Todd C. Miller
2008-11-14Upgrade to sudo 1.7. See the WHATSNEW files for details.Todd C. Miller
2008-11-13Backout previous commit, there are still some issues with it.Landry Breuil
ok sthen@
2008-11-12when destroying the device, mark the mixer and the demultiplexerAlexandre Ratchov
for ``AUTOQUIT'' first, and then call file_eof() and friends. fixes crashes sthen@ noticed on zaurus
2008-11-12Usage -> usage.Igor Sobrado
2008-11-11if the device disappear the mixer and demultiplexer chains areAlexandre Ratchov
destroyed. If this happen then warn and exit, rather than crashing.
2008-11-11remove the SIGNALS sections, describe signals in DESCRIPTIONAlexandre Ratchov
from jmc@
2008-11-11expose the volume knob in server mode tooAlexandre Ratchov
2008-11-11termninate non-server aucat when it's idle rather that usingAlexandre Ratchov
the hackish {MIX,SUB}_AUTOQUIT features. This way we don't have to care about possible references on destroyed objects.
2008-11-11when not in server mode, aucat terminates automatically usingAlexandre Ratchov
the {MIX,SUB}_AUTAQUIT features. In this case we're not allowed to directly touch dev_mix and dev_sub because they can disappar. So disable the ``suspend'' and ``quit'' bits when {MIX,SUB}_AUTAQUIT are used.
2008-11-11allocate job only when it's needed.Marc Espie
okay otto@
2008-11-11escape minus signs;Jason McIntyre
2008-11-11for sshd -T print 'permitopen any' vs. 'permitopen' for case of noKevin Steves
permitopen's; ok and input dtucker@
2008-11-11USE_AFS not referenced so remove #ifdef. fixes sshd -T not printingKevin Steves
kerberosgetafstoken. ok dtucker@
2008-11-10add a per-stream ``soft volume'' knob and the corresponding -v option.Alexandre Ratchov
The code will be useful later for the volume knob in the sndio API.
2008-11-10missing staticMarc Espie
2008-11-10adjust comment to reflect reality (CompatRunCommand is gone)Marc Espie
2008-11-09the extra kget() macro just befuddles the things we need to replace with a ↵Theo de Raadt
sysctl mechanism later
2008-11-09protect against .orig files resulting from a patch.Marc Espie
2008-11-09make aucat(1) stop automatically the audio(1) device if it's idle. ThisAlexandre Ratchov
way, when in server mode, it consumes no CPU if there are no clients. Later, this will allow to start aucat(1) at session or system startup.
2008-11-09typo fixed (overriden -> overridden)Tobias Stoeckmann
ok espie, jmc
2008-11-09Removed unneeded conversion from RCSNUM to string in rcs_rev_setlog.Tobias Stoeckmann
oki joris@
2008-11-08sort;Jason McIntyre
2008-11-08Support for retrieving revisions from branches in branches was missing.Tobias Stoeckmann
Reported by chl@, ok joris@
2008-11-08set the default device to /dev/audio for legacy mode.Alexandre Ratchov
From Thomas Pfaff <tpfaff _at_ agderlink.no> and tweaks from me
2008-11-08when dev_attach()ing play-only or record-only streams, don'tAlexandre Ratchov
use both play and record parameters (one of them might be NULL, causing aucat to segfault).