unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Thomas Fitzsimmons <fitzsim@fitzsim.org>
To: Andreas Schwab <schwab@linux-m68k.org>
Cc: Collin Day <dcday137@gmail.com>, 35969@debbugs.gnu.org
Subject: bug#35969: 26.2, Excorporate
Date: Wed, 31 Jul 2019 17:07:38 -0400	[thread overview]
Message-ID: <m3y30dj4kl.fsf@fitzsim.org> (raw)
In-Reply-To: <m236kbuwgi.fsf@linux-m68k.org> (Andreas Schwab's message of "Sat, 15 Jun 2019 09:41:33 +0200")

Hi,

I found a proxy server to test against.  I've now replicated Collin's
findings.

Andreas Schwab <schwab@linux-m68k.org> writes:

> On Jun 14 2019, Thomas Fitzsimmons <fitzsim@fitzsim.org> wrote:
>
>> diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
>> index 00803a103a..723d111d58 100644
>> --- a/lisp/url/url-http.el
>> +++ b/lisp/url/url-http.el
>> @@ -329,7 +329,10 @@ url-http-create-request
>>               ;; The request
>>               (or url-http-method "GET") " "
>>               (url-http--encode-string
>> -              (if using-proxy (url-recreate-url url-http-target-url) real-fname))
>> +              (if (and using-proxy
>> +                       (not (equal "https" (url-type url-http-target-url))))
>> +                  (url-recreate-url url-http-target-url)
>> +                real-fname))

For discussion purposes, let's call the above "patch T"...

> That should already be handled by commit 84613dae5c.

... and this commit "patch A", which is:

diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 53798f77c3..817c5ce3b3 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -1412,7 +1412,9 @@ url-https-proxy-after-change-function
                         'url-http-wait-for-headers-change-function)
                   (set-process-filter tls-connection 'url-http-generic-filter)
                   (process-send-string tls-connection
-                                       (url-http-create-request)))
+                                       ;; Use the non-proxy form of the request
+                                       (let (url-http-proxy)
+                                         (url-http-create-request))))
               (gnutls-error
                (url-http-activate-callback)
                (error "gnutls-error: %s" e))

I tried on Emacs 26.2 and master tip, and in both cases, Excorporate
worked with patch T applied and patch A not present (26.2) or reverted
(master); it failed with any other combination of the patches (A and T,
A only, neither A nor T).

One difference I noticed is that with A applied, the Connection header
is set to keep-alive and the connection is reused, whereas with just T,
Connection is set to close and the connection is re-established.  The
attached patch fixes it.  Andreas, do you have a test case that patch A
fixed, and if so, can you retest with the proposed fix?

Thanks,
Thomas

diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 838f0a30c1..eb054cd65a 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -1436,7 +1436,8 @@ url-https-proxy-after-change-function
                   (set-process-filter tls-connection 'url-http-generic-filter)
                   (process-send-string tls-connection
                                        ;; Use the non-proxy form of the request
-                                       (let (url-http-proxy)
+                                       (let (url-http-proxy
+                                             url-http-attempt-keepalives)
                                          (url-http-create-request))))
               (gnutls-error
                (url-http-activate-callback)





  parent reply	other threads:[~2019-07-31 21:07 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-28 21:25 bug#35969: 26.2, Excorporate tenspd137 .
2019-05-29  1:04 ` Thomas Fitzsimmons
2019-05-29 16:17   ` tenspd137 .
2019-05-29 17:02     ` Thomas Fitzsimmons
2019-05-29 18:13       ` tenspd137 .
2019-05-29 20:53         ` Thomas Fitzsimmons
2019-05-29 21:44           ` tenspd137 .
2019-05-29 22:01             ` Thomas Fitzsimmons
2019-05-29 22:10               ` tenspd137 .
2019-05-30 17:06                 ` tenspd137 .
2019-05-30 17:25                   ` tenspd137 .
     [not found]                     ` <CAB=m8wL0JNK+dQv68nddHuJ8yvHdsV9ehTaGJ00NK4spe1sQAQ@mail.gmail.com>
     [not found]                       ` <m3blze4872.fsf@fitzsim.org>
     [not found]                         ` <CAB=m8wJfGveEzVm46j2MLGFupdv2Lwn3VwL02_RAdirzDJKcSg@mail.gmail.com>
     [not found]                           ` <CAB=m8wKv0dWgRctuc+bWyocNOPFertCt9K4SOB2Q_W5cPU_tTw@mail.gmail.com>
     [not found]                             ` <m3tvd5p8zt.fsf@fitzsim.org>
     [not found]                               ` <CAB=m8wLKtY_38m3mJ18_qhacRUNVCU-4GEFMAKXAdbc1Xamnxg@mail.gmail.com>
     [not found]                                 ` <m3d0jtp0c7.fsf@fitzsim.org>
     [not found]                                   ` <CAB=m8wL6KqATgAddiC3H7kzLSnbe5xTeAWrq5eqvr6n6aU-OKw@mail.gmail.com>
     [not found]                                     ` <m34l55oywz.fsf@fitzsim.org>
     [not found]                                       ` <CAB=m8wKHstZNzTZxj4m-UuOg9LNeu4LRrhysOaaQrSd6z1DE0A@mail.gmail.com>
     [not found]                                         ` <m3woi1nfxw.fsf@fitzsim.org>
2019-06-14 20:13                                           ` tenspd137 .
2019-06-14 20:16                                             ` tenspd137 .
2019-06-14 20:22                                               ` Noam Postavsky
2019-06-14 20:32                                                 ` tenspd137 .
2019-06-14 20:45                                                   ` tenspd137 .
2019-06-14 21:02                                             ` Thomas Fitzsimmons
2019-06-14 21:48                                               ` tenspd137 .
2019-06-14 22:07                                                 ` tenspd137 .
2019-06-14 23:07                                                   ` tenspd137 .
2019-06-14 23:14                                                     ` tenspd137 .
2019-06-15  0:14                                                       ` Thomas Fitzsimmons
2019-06-15  0:47                                                         ` tenspd137 .
2019-06-15  0:36                                                       ` Thomas Fitzsimmons
2019-06-15  7:41                                                         ` Andreas Schwab
2019-06-17 16:31                                                           ` tenspd137 .
2019-06-17 22:08                                                             ` Thomas Fitzsimmons
2019-06-18 16:34                                                               ` tenspd137 .
2019-06-19  4:26                                                                 ` Thomas Fitzsimmons
2019-06-20 20:34                                                                   ` tenspd137 .
2019-07-09 21:52                                                                     ` Thomas Fitzsimmons
2019-07-09 22:09                                                                       ` Collin Day
2019-07-09 22:53                                                                         ` Collin Day
2019-07-10  0:08                                                                           ` Thomas Fitzsimmons
2019-07-10  0:11                                                                             ` Thomas Fitzsimmons
2019-07-10 15:35                                                                               ` Collin Day
2019-07-13 14:37                                                                           ` Thomas Fitzsimmons
2019-07-31 21:07                                                           ` Thomas Fitzsimmons [this message]
2019-07-31 21:20                                                             ` Andreas Schwab
2019-07-31 22:28                                                               ` Collin Day
2019-08-01  1:58                                                               ` Thomas Fitzsimmons
2019-08-16  3:40                                                                 ` Thomas Fitzsimmons

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3y30dj4kl.fsf@fitzsim.org \
    --to=fitzsim@fitzsim.org \
    --cc=35969@debbugs.gnu.org \
    --cc=dcday137@gmail.com \
    --cc=schwab@linux-m68k.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).