Re: api stability in apps/netutils/webclient

2020-07-31 Thread Sebastien Lorquet
Hello, I have introduced nxcurl as a simplified curl for NuttX. It is a real port, only the function names are different. The interface is similar to the real curl. It is not abandoned, the implemented features work. IIRC it supports what is required for reimplementing webclient on top of i

Re: api stability in apps/netutils/webclient

2020-07-30 Thread Takashi Yamamoto
On Wed, Jun 3, 2020 at 4:23 AM Alan Carvalho de Assis wrote: > > Hi Takashi, > > Do you think it could be possible to create a HTTP REST framework for > NuttX similar to Ulfius: > > https://babelouest.github.io/ulfius/ > > https://www.hackster.io/babelouest/http-rest-framework-in-c-for-embedded-sy

Re: api stability in apps/netutils/webclient

2020-07-30 Thread Takashi Yamamoto
On Fri, May 29, 2020 at 3:23 PM Takashi Yamamoto wrote: > > hi, > > On Fri, May 29, 2020 at 7:00 AM Gregory Nutt wrote: > > > > > > > i want to add some stuff to apps/netutils/webclient. > > > for example, > > > > > > * ability to report http status to the caller > > > * ability to add some reque

Re: api stability in apps/netutils/webclient

2020-06-02 Thread Alan Carvalho de Assis
Hi Takashi, Do you think it could be possible to create a HTTP REST framework for NuttX similar to Ulfius: https://babelouest.github.io/ulfius/ https://www.hackster.io/babelouest/http-rest-framework-in-c-for-embedded-systems-d34b0c It should be very useful feature. BR, Alan On 5/29/20, Takas

Re: api stability in apps/netutils/webclient

2020-05-29 Thread Takashi Yamamoto
hi, On Fri, May 29, 2020 at 11:53 PM Sebastien Lorquet wrote: > > I think the web client could be rewritten to benefit from the curl port > I started a while a go, which is available upstream: > > https://github.com/apache/incubator-nuttx-apps/tree/master/netutils/libcurl4nx > > Improving this cu

Re: api stability in apps/netutils/webclient

2020-05-29 Thread Sebastien Lorquet
I think the web client could be rewritten to benefit from the curl port I started a while a go, which is available upstream: https://github.com/apache/incubator-nuttx-apps/tree/master/netutils/libcurl4nx Improving this curl port would benefit any app using it, not just the web client. Sebast

Re: api stability in apps/netutils/webclient

2020-05-28 Thread Takashi Yamamoto
hi, On Fri, May 29, 2020 at 7:00 AM Gregory Nutt wrote: > > > > i want to add some stuff to apps/netutils/webclient. > > for example, > > > > * ability to report http status to the caller > > * ability to add some request headers > > * put > > * other content-type for post > > * tls > > > > a que

Re: api stability in apps/netutils/webclient

2020-05-28 Thread Gregory Nutt
i want to add some stuff to apps/netutils/webclient. for example, * ability to report http status to the caller * ability to add some request headers * put * other content-type for post * tls a question: how much api stability is expected for this? Of course we would like the code to be sta

api stability in apps/netutils/webclient

2020-05-28 Thread Takashi Yamamoto
hi, i want to add some stuff to apps/netutils/webclient. for example, * ability to report http status to the caller * ability to add some request headers * put * other content-type for post * tls a question: how much api stability is expected for this? can i just add extra arguments to wget() et