openbsd-ports/net/trickle/pkg/MESSAGE
pvalchev c666ca6186 Initial import of trickle-1.04
trickle is a portable lightweight userspace bandwidth shaper.  It can
run in collaborative mode (together with trickled) or in stand alone
mode.  trickle works by taking advantage of the unix loader preloading.
Essentially it provides, to the application, a new version of the
functionality that is required to send and receive data through sockets.
It then limits traffic based on delaying the sending and receiving of
data over a socket.  trickle runs entirely in userspace and does not
require root privileges.

WWW: http://monkey.org/~marius/trickle/

Maintainer Jolan Luff <jolan@cryptonomicon.org>
2003-04-13 08:07:50 +00:00

17 lines
556 B
Plaintext

Post Installation Set-Up of trickle
-----------------------------------
See trickle(1), trickled.conf(5), and trickled(8) for information on
configuring and using trickle. The optional trickled.conf configuration
file should be placed at ${SYSCONFDIR}/trickled.conf.
Additionally, you may wish to start trickled at system start-up time
via the /etc/rc.local script (it should be noted that trickled can run
with, but does not require root privileges):
if [ -x ${PREFIX}/bin/trickled ]; then
echo -n ' trickled'; ${PREFIX}/bin/trickled
fi