summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2008-11-05add missing header needed by strcmp/strerror/memset functions.Charles Longeau
ok canacar@
2008-11-05Fix some function prototypes, remove unused variables and commented out codeCan Erkin Acar
2008-11-05passord -> password;Jason McIntyre
fixes user/5975 from Rene Maroufi
2008-11-05add dynamic forward escape command line; ok djm@Kevin Steves
2008-11-04conversions are smarter now, remove corresponding ``BUGS'' itemAlexandre Ratchov
2008-11-04split code that converts any->any in two parts: one to encodeAlexandre Ratchov
native->any and one to decode any->native. It is simpler and faster this way.
2008-11-04because parse_forward() is now used to parse all forward types (DLR),Kevin Steves
and it malloc's space for host variables, we don't need to malloc here. fixes small memory leaks. previously dynamic forwards were not parsed in parse_forward() and space was not malloc'd in that case. ok djm@
2008-11-04spelling: ambigious -> ambiguousMarc Espie
2008-11-04cleanup: remove channel mapping bits from encoding conversion code.Alexandre Ratchov
As a side effect, reduce CPU usage by ~10% on envy(4) devices.
2008-11-04add "new" conversion code to map any channel range into any otherAlexandre Ratchov
channel range (based on the encoding conversion code). Will allow to unentangle channel mapping from encoding conversion. As a side effect, greatly reduces CPU usage for channel mapping. No functionnal change.
2008-11-04cleanup: resample stream while in native format and remove resamplingAlexandre Ratchov
bits from the encoding conversion code. As a side effect this reduces CPU usage by 30% on envy(4).
2008-11-04optimization: add "new" resampling code (actually based on the existingAlexandre Ratchov
conversion bits) and use it when resampling only is required (ie for clients using s16 encoding), this is the most common case. Reduces CPU usage by ~50%. No functional change.
2008-11-04Add support for an experimental zero-knowledge password authenticationDamien Miller
method using the J-PAKE protocol described in F. Hao, P. Ryan, "Password Authenticated Key Exchange by Juggling", 16th Workshop on Security Protocols, Cambridge, April 2008. This method allows password-based authentication without exposing the password to the server. Instead, the client and server exchange cryptographic proofs to demonstrate of knowledge of the password while revealing nothing useful to an attacker or compromised endpoint. This is experimental, work-in-progress code and is presently compiled-time disabled (turn on -DJPAKE in Makefile.inc). "just commit it. It isn't too intrusive." deraadt@
2008-11-04need unistd.h for close() prototypeDamien Miller
2008-11-04changes to get target equivalence to work better.Marc Espie
- add new file to create lists of equivalent targets (siblings) - use that for sequential mode to have much better VPATH support - separate checking commands from reporting error, for later. - zap DieHorribly accordingly - renumber existing flags - signal_running_jobs() is simpler than pass_signal_to_jobs() - new debug option -dn for name matching. Similar code to handle parallel make is still missing. thanks to Mark, Miod, Theo, Otto, Todd for tests and/or comments.
2008-11-03rename mixxxx and subxxx fields of struct abuf to avoid confusion:Alexandre Ratchov
Add ``i'' to offsets in the input buffer and ``o'' to offsets in the output buffer. This is necessary because input and output use no more the same frame size.
2008-11-03A small optimization: handle most N-channel <-> M-channel conversionsAlexandre Ratchov
inside the mixer and the demultiplexer. This way, aucat will not trigger the heavy conversion code when only channel conversions are required. Cuts ~50% of the CPU usage on envy(4) devices, can improve surround 4.0, 5.1 and 7.1 capable devices. No functionnal change.
2008-11-03...and then sync tildehelp and mail9.nr;Jason McIntyre
2008-11-03update the tilde escapes for both these files,Jason McIntyre
and try and keep them in a similar format/order;
2008-11-03poor USD docs, we always forget you! ...document ~xJason McIntyre
2008-11-03add ~x; which is quite handy sometimes. per posixMartynas Venckus
man page tweak&ok jmc@. ok millert@
2008-11-03include MaxSessions in sshd -T output; patch from imorgan AT nas.nasa.govDamien Miller
2008-11-03fix commentKevin Steves
2008-11-03remove valueless commentKevin Steves
2008-11-02new sentence, new line;Jason McIntyre
2008-11-02Add the option to sort by requests to the pool view, and documentCan Erkin Acar
the hotkeys 'o' to select and 'r' to reverse column orderings.
2008-11-02Add a view that displays pool(9) information. Idea and ok deraadt@Can Erkin Acar
2008-11-02protocol 2 tty modes support is now 7.5 years old so remove theseKevin Steves
debug3()s; ok deraadt@
2008-11-01fix the synopsis of the command; spacing.Igor Sobrado
ok jmc@
2008-11-01merge dynamic forward parsing into parse_forward(); 'i think this is OK' djm@Kevin Steves
2008-11-01the ellipsis is not an optional argument; while here, improve spacing.Igor Sobrado
2008-11-01remove commented out -S option;Jason McIntyre
2008-11-01fix some typos in log messages; ok djm@Kevin Steves
2008-11-01sprinkle ARGSUSED on dispatch handlersDamien Miller
nuke stale unusued prototype
2008-11-01Improve reporting of cache misses in the vmstat view. PreviouslyCan Erkin Acar
the misses field may report negative values. The hit/miss numbers does not exactly reflect the statistics collected by the kernel but this is close enough. Report & patch from Bjorn Anderss, input from beck@ and thib@
2008-11-01Remove disabled help text code and -S command, both leftovers from pftop,Can Erkin Acar
skip the correct number of bytes after the 'start' command.
2008-11-01Document more global hotkeys. Help and ok jmc@Can Erkin Acar
2008-10-31remove unused #define DISPATCH_MIN; ok markus@Kevin Steves
2008-10-31Implement start and stop commands as documented,Can Erkin Acar
explicitly pass the command buffer to the command functions.
2008-10-31make ^G display the current view and refresh interval as documented.Can Erkin Acar
2008-10-30don't need to #include "monitor_fdpass.h"Kevin Steves
2008-10-30since people often ask, add BUGS entry to explain whyAlexandre Ratchov
aucat should be started automatically yet at system startup help from jmc@
2008-10-29chmod(2) the aucat socket, as if aucat(1) was started withAlexandre Ratchov
umask = 0, this allows one user to start the server and another user to use it (eg. _mpd). ok todd, deraadt, jakemsr
2008-10-29no need to warn about using the default device; Thomas PfaffTheo de Raadt
2008-10-28Use -Werror unconditionnaly again.Miod Vallat
2008-10-27No -Werror on m88k, hairy gcc bug generates false ``variable might be usedMiod Vallat
uninitialized'' warnings. To be removed when the compiler bug is fixed eventually.
2008-10-27rename libsa to libsndioAlexandre Ratchov
requested by many, "just go for it" deraadt@
2008-10-26- make pkg-config recognize --short-errorsJasper Lievisse Adriaanse
- bump the version we're pretending to be to 0.21 ok ckuethe@ ajacoutot@
2008-10-26zap `q' from the getopts string too,Alexandre Ratchov
requested by jmc@
2008-10-26sync SYNOPSIS and usage();Jason McIntyre