Hi all,
I am running into an issue where I need to download a large binary, but I am limited to the 2k recv buffer while utilizing TLS.
I can utilize the download client successfully when the binary is uploaded to a public AWS S3 bucket, but the issue occurs when I am trying to run it off of a private server.
I can do a HTTP 1.1 GET and recv the first 2k bytes (including header).
This server utilizes a MAC ID in the URI and a JWT authorization token (sent in the header).
Is there a way to customize the download client to be able to do this? Or to even have a custom implementation with a stream of nrf_recv()?
Thank you in advance.