82ee8bf35d
Update provided by Andreas Wrede <andreas@planix.com> via PR pkg/23319. Changes: 031023 Released 0.12.0. Penlogd: sscanf would read 100 bytes + terminating nul into a buffer of size 100. Now reads 99+nul. Spotted by Oezguer Kesim. Let tracking time be set through penctl.cgi. In do_cmd, "no log": only close the logfile if it is open. New penctl command, "write [FILE]" writes current configuration to a file. If FILE is omitted, overwrite the original configuration file (-F option). Pen: Time based expiration of tracked clients. Default is 0 seconds = never expire. Added -T option to control expiry time. Also added penctl command "tracking N". Penlogd: zero-terminate results from recvfrom. In penlogd.c: don't complain if recvfrom is interrupted by signal. More bugfixes, etc.
19 lines
464 B
Makefile
19 lines
464 B
Makefile
# $NetBSD: Makefile,v 1.7 2003/10/30 23:36:29 xtraeme Exp $
|
|
#
|
|
|
|
DISTNAME= pen-0.12.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://siag.nu/pub/pen/ \
|
|
ftp://siag.nu/pub/pen/
|
|
|
|
MAINTAINER= rh@NetBSD.org
|
|
HOMEPAGE= http://siag.nu/pen/
|
|
COMMENT= Load balancer for "simple" tcp based protocols
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
# Avoid pen complaining on NetBSD
|
|
CONFIGURE_ARGS+= --with-fd_setsize=2048
|
|
CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/pen
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|