the webserver in SLS is missing some important abilities that are part of the http standard. I understand that there is a proxy server between my LSL webserver and the external internet, and therefore some restrictions must apply.
But the omissions I have fallen over recently are not onerous for proxy server. For example
  • basic realm authorisation
  • setting cookies
  • returning a redirect status
These 3 require being able to set stock standard HTTP headers in the generated response , as is done by llSetContentType for the CONTENT_TYPE header.
I'd also like to be able to do chunked responses. I accept that's a bit more ambitious
So my request boils down to
Please provide a function llSetHeader for at good subset of the standard HTTP headers. It should function with the same constraints as llSetContentType does.