Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 94963 invoked from network); 5 Oct 2006 09:50:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Oct 2006 09:50:39 -0000 Received: (qmail 22443 invoked by uid 500); 5 Oct 2006 09:50:35 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 22325 invoked by uid 500); 5 Oct 2006 09:50:34 -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: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 22313 invoked by uid 99); 5 Oct 2006 09:50:34 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Oct 2006 02:50:34 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=mathias.herberts@gmail.com; domainkeys=good X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [64.233.166.176] ([64.233.166.176:1840] helo=py-out-1112.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id DB/52-20288-355D4254 for ; Thu, 05 Oct 2006 02:50:19 -0700 Received: by py-out-1112.google.com with SMTP id 39so532591pyu for ; Thu, 05 Oct 2006 02:49:43 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=q5c7+uDsg5pBvWPa58/HZmAA6m5/PHAyJN7TTb+Ad6RqmYZS4sj7OLC+dIMfH5mjYSGWZfI40FY7+L7XFxLfqmYFq35HQnE/qIV/f6IIFnHO1KrtC9c3YNn9B0+jkNQ+TQQXRkPTvXqF0CZ64JoAosLfDyXOZGildpEm8nrSLyY= Received: by 10.35.99.6 with SMTP id b6mr3153179pym; Thu, 05 Oct 2006 02:49:43 -0700 (PDT) Received: by 10.35.79.8 with HTTP; Thu, 5 Oct 2006 02:49:42 -0700 (PDT) Message-ID: <1c5747850610050249x59a931d1v13398d6b07502be5@mail.gmail.com> Date: Thu, 5 Oct 2006 11:49:43 +0200 From: "Mathias Herberts" To: dev@httpd.apache.org Subject: Re: mod_proxy and balancer problems In-Reply-To: <200610051033.29308.nick@webthing.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1c5747850609290053w77508332xb8a01732e3463116@mail.gmail.com> <451D5DFB.6080106@apache.org> <1c5747850610050207g237151a1hde3cc9a3db7c94cd@mail.gmail.com> <200610051033.29308.nick@webthing.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N > +#define STRSTR(url,name,ignorecase) (ignorecase == 0 ? strstr(url,name) : > strcasestr(url,name)) > > Ahem. Apache is supposed to be portable, but AIUI strcasestr is nonstandard. I guess then ap_strcasestr could be substituted. Mathias.