Re: [PATCH v2] http: parse HTTP headers case-insensitive

2022-01-17 Thread Stephen Balousek
Hi Jamo, I like seeing these improvements to HTTP handling. I made a bunch of comments below. Hopefully one or two of them are helpful. - Steve On 1/16/2022 5:54 PM, Jamo wrote: According to https://www.ietf.org/rfc/rfc2616.txt 4.2, header names shall be case insensitive and we are now force

[PATCH v3] http: Allow use of non-standard TCP/IP ports

2022-01-16 Thread Stephen Balousek
Allow the use of HTTP servers listening on ports other 80. This is done with an extension to the http notation: (http[,server[,port]]) - or - (http[,server[:port]]) Signed-off-by: Stephen Balousek --- Thanks for that, Daniel. Sorry to have so much trouble making sense of grub_strtoul

[PATCH v2] http: Allow use of non-standard TCP/IP ports

2022-01-08 Thread Stephen Balousek
Allow the use of HTTP servers listening on ports other 80. This is done with an extension to the http notation: (http[,server[,port]]) - or - (http[,server[:port]]) Signed-off-by: Stephen Balousek --- Hi Daniel, Happy New Year! I apologize for the long delay. I really wanted to test

Re: [PATCH] net: Allow use of non-standard TCP/IP ports for HTTP protocol.

2021-10-26 Thread Stephen Balousek
Hi Daniel, Thank you for another detailed response. Please let me know how that section related to IPv6 should be commented, and I will submit an updated patch. - Steve On 10/26/2021 8:52 AM, Daniel Kiper wrote: Hi Stephen, On Sun, Oct 10, 2021 at 03:15:34PM -0700, Stephen Balousek wrote

Re: [PATCH] net: Allow use of non-standard TCP/IP ports for HTTP protocol.

2021-10-10 Thread Stephen Balousek
completely sure how to submit a revised patch to the mailing list and still maintain the email thread, so I am appending the new patch to this message. Thanks again, - Steve On 9/28/21 07:27, Daniel Kiper wrote: On Sun, Sep 05, 2021 at 03:57:42PM -0700, Stephen Balousek wrote: Allow the use

[PATCH] net: Allow use of non-standard TCP/IP ports for HTTP protocol.

2021-09-05 Thread Stephen Balousek
Allow the use of HTTP servers listening on ports other 80. This is done with an extension to the http notation of either: (http[,server[,port]]) - or - (http[,server[:port]]) Signed-off-by: Stephen Balousek --- grub-core/net/http.c | 43 +++ 1