From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 17E33207D6; Thu, 27 Apr 2017 18:00:50 +0000 (UTC) Date: Thu, 27 Apr 2017 18:00:49 +0000 From: Eric Wong To: kcar-public@bogomips.org Subject: Re: [PATCH 2/7] begin implementing request parsing Message-ID: <20170427180049.GA12999@starla> References: <20170419223025.8093-1-e@80x24.org> <20170419223025.8093-3-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20170419223025.8093-3-e@80x24.org> List-Id: Eric Wong wrote: > + # lets not waste cycles setting fragment in the request, > + # valid clients do not send it, but we will just silently ignore it. > + Fragment = ( uchar | reserved )*; Damnit, we can't do this, we must set env["FRAGMENT"] like mongrel/puma/thin/unicorn do :< This is because some people implement WebDAV, and the litmus test needs DELETE to fail if there is a fragment in the request. And there may be other things, which rely on it, too.