[lwip-users] bug in contrib httpserver app

2013-02-25 Thread Joseph L. Kroesche
Hello, I was trying to get the httpserver-netconn working (in contrib). I am using lwip-1.4.1 and contrib-1.4.1. I think the following change is needed: 73c73 < netconn_bind(conn, NULL, 80); --- > netconn_bind(conn, IP_ADDR_ANY, 80); You cant pass NULL in for the ANY address because it is

[lwip-users] proper way to add extern fs support to htttpserver_raw

2013-05-01 Thread Joseph L. Kroesche
I am using the httpserver_raw from contrib with lwip 1.4.1 with no rtos. I am serving up web pages from the internal flash memory without any problems. This is the fsdata_custom.c file that is prepared using makefsdata. This all works fine. However, I am struggling with the proper way to add

Re: [lwip-users] proper way to add extern fs support to htttpserver_raw

2013-05-06 Thread Joseph L. Kroesche
Emiliano, Thank you very much for your detailed reply. Your note confirms my suspicion that it is not possible to make this work with SD card without making modifications to the distributed code. I was hoping that I could support this without needing to modify any code from lwip. My approach