Return-Path: Delivered-To: apmail-httpd-modules-dev-archive@locus.apache.org Received: (qmail 68384 invoked from network); 12 Apr 2007 09:41:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Apr 2007 09:41:30 -0000 Received: (qmail 37995 invoked by uid 500); 12 Apr 2007 09:41:36 -0000 Delivered-To: apmail-httpd-modules-dev-archive@httpd.apache.org Received: (qmail 37975 invoked by uid 500); 12 Apr 2007 09:41:35 -0000 Mailing-List: contact modules-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: modules-dev@httpd.apache.org Delivered-To: mailing list modules-dev@httpd.apache.org Received: (qmail 37965 invoked by uid 99); 12 Apr 2007 09:41:35 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Apr 2007 02:41:35 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of saju.pillai@gmail.com designates 64.233.166.183 as permitted sender) Received: from [64.233.166.183] (HELO py-out-1112.google.com) (64.233.166.183) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Apr 2007 02:41:29 -0700 Received: by py-out-1112.google.com with SMTP id u77so628866pyb for ; Thu, 12 Apr 2007 02:41:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=jFjJq6QCN7ZXQwE1Wo0EPVECHFT/52tyWh42Q7r7p1dg6BpoNs0Gg5gFWNWK5pICycGxoinzQX2SnkIxanq3sMebO9fXQy/Fy+AdAfFVTzie3V3cQlHWiXFkxVE7zHQKtmP7iAsbFJo7wq/dMbVsuHJE78EGZ1BCVy3RBXp4bPU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ZBWbz5sQPZZudqTAg2dYBFwa6iaSR/WeXOZxpGSFDQWl909R0e68wO5Kva+z9/KIkQY+l2InFgx1bFeYXt8GtZm1lBqOzFHfLXoED03UlQNyalzEeXiJeSOKtjz2BeSPtvrnuIBoYtmcTzoOZqFzyTwoTvJ+uHk9mn9s0j6vk04= Received: by 10.64.241.3 with SMTP id o3mr3491034qbh.1176370868456; Thu, 12 Apr 2007 02:41:08 -0700 (PDT) Received: by 10.64.48.10 with HTTP; Thu, 12 Apr 2007 02:41:08 -0700 (PDT) Message-ID: <13c255070704120241g561bb552s6c6d559c93cbeeae@mail.gmail.com> Date: Thu, 12 Apr 2007 15:11:08 +0530 From: "Saju Pillai" To: modules-dev@httpd.apache.org Subject: Examining per_dir_config for a module MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org Greetings, I am attempting to write a apache 2.2 module that has per dir/location directives. I need to examine all the per dir/location module_config's for this mod. Can I do something like ... for (server = base_server; server; server = server->next) { conf = ap_get_module_config(server->lookup_defaults, &my_mod); } regards srp