Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 21155 invoked by uid 500); 10 Sep 2002 11:56:39 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 21142 invoked from network); 10 Sep 2002 11:56:39 -0000 Date: Tue, 10 Sep 2002 13:56:34 +0200 From: Henning Brauer To: dev@httpd.apache.org Subject: Re: [PATCH] 1.3 NET_SIZE_T is socklen_t on OpenBSD Message-ID: <20020910115634.GL25748@skywalker.bsws.de> Mail-Followup-To: dev@httpd.apache.org References: <20020906191752.GM19473@skywalker.bsws.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-PGP-Key: 3A83DF32 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N On Tue, Sep 10, 2002 at 07:12:56AM -0400, Jeff Trawick wrote: > Henning Brauer writes: > > +#define NET_SIZE_T socklen_t > Does this hold for every level of OpenBSD, or is a version check > necessary? all versions >= 2.6 have socklen_t. Given that We don't support anything below 3.0 any more... ;-) You could add a #if (OpenBSD >= 199912) if you really want.