[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler
From: |
Sylvain BERTRAND |
Subject: |
Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/ |
Date: |
Wed, 3 Nov 2021 19:28:21 +0000 |
Ok, I did dive into the issue and found the bug which is on the server side:
the server does bug if you send mix-cased http header names, namely
'Content-type'
instead of 'Content-Type'.
Weird, I have a very strong feeling of deja vu.
Here is a patch to work-around those buggy servers with lynx:
---
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -1741,13 +1741,13 @@
anAnchor->post_content_type
? anAnchor->post_content_type
: "lose"));
- HTBprintf(&command, "Content-type: %s%c%c",
+ HTBprintf(&command, "Content-Type: %s%c%c",
anAnchor->post_content_type
? anAnchor->post_content_type
: "lose",
CR, LF);
- HTBprintf(&command, "Content-length: %d%c%c",
+ HTBprintf(&command, "Content-Length: %d%c%c",
!isBEmpty(anAnchor->post_data)
? BStrLen(anAnchor->post_data)
: 0,
- [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Sylvain BERTRAND, 2021/11/01
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Thomas Dickey, 2021/11/01
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Sylvain BERTRAND, 2021/11/02
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Thomas Dickey, 2021/11/02
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Thorsten Glaser, 2021/11/02
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, David Woolley, 2021/11/03
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, David Woolley, 2021/11/03
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Steffen Nurpmeso, 2021/11/03
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Sylvain BERTRAND, 2021/11/02
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Thorsten Glaser, 2021/11/03
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/,
Sylvain BERTRAND <=
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Sylvain BERTRAND, 2021/11/04
- Re: [Lynx-dev] [cookies?] unable to log in in http://board.flatassembler.net/, Thomas Dickey, 2021/11/04