summaryrefslogtreecommitdiff
path: root/net/pen
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2003-03-27 17:53:20 +0000
committerwiz <wiz@pkgsrc.org>2003-03-27 17:53:20 +0000
commit1f029c773169aa44e3b4baca9aafb108902b8ff7 (patch)
treec5ce15555639dd13c378cb599e064d930a4f6235 /net/pen
parent759b591f7c7c4d23839ccd9ca1cc391c0e90ffc1 (diff)
downloadpkgsrc-1f029c773169aa44e3b4baca9aafb108902b8ff7.tar.gz
Update to 0.10.0, from Andreas Wrede in PR 20898.
Relevant portion of the Changelog : 030208 New option -H adds X-Forwarded-For header to http requests. 020717 Patches from Patroklos G. Argyroudis <argp@ieee.org>: - check getopt() calls against -1 and not EOF - fix for a possible format string in pen.c 020711 Ported to Darwin/MacOS X. Released 0.9.4. 020705 New penctl command: recent [seconds] displays clients that have connected recently (default five minutes), along with number of connects, transmitted and received data. 020702 Buffer overflow in netlog. See comment in pen.c. Added options -j (for chroot) and -u (for setuid) to pen and penlogd. See manpages. 020627 Fixed an error which could throw penlogd into an endless loop if a udp packet was lost at the crucial moment. 020626 Pedantic checking of memory allocations and buffer sizes. 020618 Penlogd: added option -n to adjust the number of cached log entries from Pen. 020614 Added options -d, -f, -l and -p to penlogd. They do the same as in pen. Also added signal handlers for TERM and HUP; these too do the same as in pen. Updated penlogd manpage. Updated www section in HOWTO to use penlog rather than mergelogs. 020613 Added penlog.c to log over a network using Apaches reliable piped logs. A companion log server, penlogd.c, consolidates logs from Pen and from all web servers into a single file. Added the necessary code to Pen log over the network. 020610 Wrote penctl.cgi, a web wrapper for penctl. 020609 Wrote a new version of the main loop, using poll() instead of select(). Added configuration option --with-poll to enable. Also turned redefinition of FD_SETSIZE into a configuration option --with-fd_setsize=N. Updated installation instructions in INSTALL. 020605 Added optional hard limit to the number of connections to each server. Timestamps in debug log entries. Released 0.8.0. 020604 Added "server of last resort" (-e option) which is only used when all other servers are unavailable. (Andreas Wrede) 020528 Several enhancements and bugfixes by Andreas Wrede: In webstats: changed CLIENTS_MAX to clients_max and CONNECTIONS_MAX to connections_max. Show time in human-readable format rather than seconds since 1970. Changed byte counters from unsigned long to unsigned long long. Fixed file descriptor leak: The connection wasn't closed when the connection table was full. Moved stats generation and log restart out of the signal handlers and into the main loop. If a client went away before receiving all its data (large files), the remaining portion would be sent to the next client occupying the same slot. Added pointers in connection structure to avoid having to memcpy the buffers in flush_up/flush_down. Released 0.7.0. 020507 Updated the penctl manpage to reflect reality. Released 0.6.3. 020417 Added -D switch to make copy_up and copy_down *always* store data in a temporary buffer and wait for the next round through the main loop before passing it on to the receiving end. The penctl command for this is "delayed_forward". When making sockets nonblocking (through fcntl(..., O_NONBLOCK)), make sure that any existing flags are not reset in the process. Important bugfix: each failed connection attempt in try_server would result in one socket leaked because we returned without closing it. 020413 Figured out why nonblocking mode was slower than blocking. Fixed. 020411 Added penctl, a simple user interface to the control protocol. 020324 Cancel timeout if it isn't needed. 020115 Added LDAP info in the HOWTO. Added the flush_up/flush_down bugfix from 0.5.0 again. Released 0.6.1. 020111 Moved #include <sys/types.h> before #include <netinet/in.h> Replaced the call to setpgrp with setsid. Transformed mergelogs into ultimately portable ANSI C (almost). Thanks to Mike Dugas <mad@phobia.net> for help with porting Removed the -r (rejects) option, since we no longer reject anything. to FreeBSD 4.4-RELEASE. 020110 Rewrote mergelogs completely. It will now never discard a web server log entry, and it tries much harder to locate a good match in the pen log. It deals with log entries that are out of order and servers with unsynchronized clocks and/or different time zones. The -l (lag) option is no more. Released 0.6.0 010915 Made the use of daemon() optional. Added the cgi script penstats to update and display statistics. Set current in store_conn. Released 0.5.0. 010914 Statistics in HTML format (Riccard Ã…kerman). Tested pen on HP-UX 10.20.
Diffstat (limited to 'net/pen')
-rw-r--r--net/pen/Makefile6
-rw-r--r--net/pen/PLIST10
-rw-r--r--net/pen/distinfo7
-rw-r--r--net/pen/patches/patch-aa12
4 files changed, 15 insertions, 20 deletions
diff --git a/net/pen/Makefile b/net/pen/Makefile
index 2b2023a96a7..d99114445b9 100644
--- a/net/pen/Makefile
+++ b/net/pen/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2001/09/13 15:09:38 rh Exp $
+# $NetBSD: Makefile,v 1.3 2003/03/27 17:53:20 wiz Exp $
#
-DISTNAME= pen-0.4.0
+DISTNAME= pen-0.10.0
CATEGORIES= net
MASTER_SITES= http://siag.nu/pub/pen/ \
ftp://siag.nu/pub/pen/
@@ -18,7 +18,7 @@ post-install:
# ${INSTALL_MAN} ${WRKSRC}/${prg}.1 ${PREFIX}/man/man8/${prg}.8
#.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pen
-.for doc in COPYING ChangeLog README
+.for doc in CONTROL COPYING ChangeLog HOWTO README
${INSTALL_DATA} ${WRKSRC}/${doc} ${PREFIX}/share/doc/pen
.endfor
diff --git a/net/pen/PLIST b/net/pen/PLIST
index 064d5b1e51a..b35d8638c8b 100644
--- a/net/pen/PLIST
+++ b/net/pen/PLIST
@@ -1,9 +1,17 @@
-@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:57:43 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2003/03/27 17:53:20 wiz Exp $
bin/mergelogs
bin/pen
+bin/penctl
+bin/penlog
+bin/penlogd
man/man1/mergelogs.1
man/man1/pen.1
+man/man1/penctl.1
+man/man1/penlog.1
+man/man1/penlogd.1
+share/doc/pen/CONTROL
share/doc/pen/COPYING
share/doc/pen/ChangeLog
+share/doc/pen/HOWTO
share/doc/pen/README
@dirrm share/doc/pen
diff --git a/net/pen/distinfo b/net/pen/distinfo
index 105db43abad..19127734bba 100644
--- a/net/pen/distinfo
+++ b/net/pen/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.3 2001/11/22 08:12:24 itojun Exp $
+$NetBSD: distinfo,v 1.4 2003/03/27 17:53:20 wiz Exp $
-SHA1 (pen-0.4.0.tar.gz) = a64afa4ae47f55ff5378c13fe7e08c67a2a2d246
-Size (pen-0.4.0.tar.gz) = 45810 bytes
-SHA1 (patch-aa) = 43433a389216fd1d91307fceddf8a487a55c6ea7
+SHA1 (pen-0.10.0.tar.gz) = c7c4f08decba93e87d8d88cddb8eb8ff82875ed1
+Size (pen-0.10.0.tar.gz) = 95952 bytes
diff --git a/net/pen/patches/patch-aa b/net/pen/patches/patch-aa
deleted file mode 100644
index 2d2de2f75fc..00000000000
--- a/net/pen/patches/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2001/11/22 08:12:25 itojun Exp $
-
---- pen.c- Thu Nov 22 17:07:15 2001
-+++ pen.c Thu Nov 22 17:07:26 2001
-@@ -17,6 +17,7 @@
- MA 02111-1307, USA.
- */
-
-+#include <sys/types.h>
- #include <stdio.h>
- #include <ctype.h>
- #include <errno.h>