Re: [PATCH 08/12] net/httpd: add httpd common code

2024-07-03 Thread Tom Rini
On Wed, Jul 03, 2024 at 06:06:52AM +0400, Mikhail Kshevetskiy wrote: > > On 7/1/24 19:54, Peter Robinson wrote: > > Hi Mikhail, > > > >> This patch adds HTTP/1.1 compatible web-server that can be used > >> by other. Server supports GET, POST, and HEAD requests. On client > >> request it will call

Re: [PATCH 08/12] net/httpd: add httpd common code

2024-07-02 Thread Mikhail Kshevetskiy
On 7/1/24 19:54, Peter Robinson wrote: > Hi Mikhail, > >> This patch adds HTTP/1.1 compatible web-server that can be used >> by other. Server supports GET, POST, and HEAD requests. On client >> request it will call user specified GET/POST callback. Then results >> will be transmitted to client. >

Re: [PATCH 08/12] net/httpd: add httpd common code

2024-07-01 Thread Peter Robinson
Hi Mikhail, > This patch adds HTTP/1.1 compatible web-server that can be used > by other. Server supports GET, POST, and HEAD requests. On client > request it will call user specified GET/POST callback. Then results > will be transmitted to client. Why are we adding a HTTP server? I don't see a c

[PATCH 08/12] net/httpd: add httpd common code

2024-06-27 Thread Mikhail Kshevetskiy
This patch adds HTTP/1.1 compatible web-server that can be used by other. Server supports GET, POST, and HEAD requests. On client request it will call user specified GET/POST callback. Then results will be transmitted to client. The following restrictions exist on the POST request at the moment: