From owner-cvs-all@FreeBSD.ORG Thu Feb 26 13:39:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8C3F16A4CE; Thu, 26 Feb 2004 13:39:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B285143D1D; Thu, 26 Feb 2004 13:39:56 -0800 (PST) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1QLduGe008840; Thu, 26 Feb 2004 13:39:56 -0800 (PST) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1QLdulo008839; Thu, 26 Feb 2004 13:39:56 -0800 (PST) (envelope-from clement) Message-Id: <200402262139.i1QLdulo008839@repoman.freebsd.org> From: Clement LAFORET Date: Thu, 26 Feb 2004 13:39:56 -0800 (PST) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/pythondirector Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Feb 2004 21:39:56 -0000 clement 2004/02/26 13:39:56 PST FreeBSD ports repository Modified files: net Makefile Added files: net/pythondirector Makefile distinfo pkg-descr pkg-plist Log: Add python director 0.0.7. This is a pure-python TCP load balancer. It takes inbound TCP connections and connects them to one of a number of backend servers. Features: * async i/o based, so much less overhead than fork/thread based balancers. * Multiple scheduling algorithms (random, round robin, leastconns, leastconns+roundrobin) * If a server fails to answer, it's removed from the pool - the client that failed to connect gets transparently failed over to a new host. * xml based configuration file * seperate management thread that periodically re-adds failed hosts if they've come back up. * optional builtin webserver for admin (sample of the running screen) * webserver has methods suitable for both interactive and automated systems WWW: http://pythondirector.sourceforge.net/ Revision Changes Path 1.1234 +1 -0 ports/net/Makefile 1.1 +29 -0 ports/net/pythondirector/Makefile (new) 1.1 +2 -0 ports/net/pythondirector/distinfo (new) 1.1 +20 -0 ports/net/pythondirector/pkg-descr (new) 1.1 +38 -0 ports/net/pythondirector/pkg-plist (new)