From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Paul Pogonyshev Newsgroups: gmane.emacs.devel Subject: Re: help with URL module needed Date: Mon, 29 Nov 2004 16:01:10 +0200 Message-ID: <200411291601.10780.pogonyshev@gmx.net> References: <200411261732.12616.pogonyshev@gmx.net> <200411290112.21934.pogonyshev@gmx.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1101737258 12105 80.91.229.6 (29 Nov 2004 14:07:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 29 Nov 2004 14:07:38 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 29 15:07:33 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CYm36-0003xg-00 for ; Mon, 29 Nov 2004 14:58:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CYmCV-0000rx-6G for ged-emacs-devel@m.gmane.org; Mon, 29 Nov 2004 09:08:23 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CYmCL-0000rs-Fu for emacs-devel@gnu.org; Mon, 29 Nov 2004 09:08:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CYmCL-0000rg-1w for emacs-devel@gnu.org; Mon, 29 Nov 2004 09:08:13 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CYmCK-0000rd-V9 for emacs-devel@gnu.org; Mon, 29 Nov 2004 09:08:13 -0500 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.34) id 1CYm2r-0003pY-0E for emacs-devel@gnu.org; Mon, 29 Nov 2004 08:58:25 -0500 Original-Received: (qmail 26491 invoked by uid 65534); 29 Nov 2004 13:58:21 -0000 Original-Received: from unknown (EHLO localhost.localdomain) (195.50.12.118) by mail.gmx.net (mp007) with SMTP; 29 Nov 2004 14:58:21 +0100 X-Authenticated: #16844820 Original-To: Andreas Schwab User-Agent: KMail/1.4.3 In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:30485 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:30485 Hmm... I think I found a bug in URL module that _might_ be related to the weird = problem I'm experiencing. My `url-cookie-storage' variable has cookies listed for my *proxy domain*= , not (ru|en).wikipedia.org! As the result, the cookies are not sent, as URL m= odule seems to correctly compare domains (i.e. it doesn't compare with the prox= y.) Can you please look at this? Andreas Schwab wrote: > Paul Pogonyshev writes: > > Can you maybe help me indirectly? Do you know how I could catch a > > request that is sent by one of the browsers? (I have Konqueror, Mozi= lla > > and Lynx here, but all quite old.) Maybe there is a generic way to l= og > > everything sent by HTTP? > > For example tcpdump, ethereal, or a transparent proxy. Thanks. In case anyone is interested, this way of dumping requests seems particul= arly easy (for localhost only): use tcputils (ftp://ftp.lysator.liu.se/pub/uni= x/tcputils/) and do =09tcplisten 80 Then all you need is to hack the
a little to ma= ke it send the request to 127.0.0.1. Paul