uIP webserver as a simple “only ht…

Hi Anyone knows easy it is to convert uIP Webserver to an “only http server”?
I have the http flowing through a standard serial UART interface (all the IP stuffer is handlet on a host computer). Input: raw http requests.
Output: raw http responses. I see the source code / demo project is cluttered with socket-things, ect. BR, Jonas

uIP webserver as a simple “only ht…

Most of the code is processing the TCP/IP protocol. That just passes received packets to the user application, which can be an http server. If you just want the http server then nearly all the rest of the code can go in the trash. http is just an text protocol.