Pico Web Services
PicoWS is a pico web server that provides web services for your embedeed apps written in C. This web server is very basic but it allow you to add web service to your apps.
gcc -O0 -g3 -Wall -c -fmessage-length=0 -fPIC picows.c
gcc -shared -o libpicows.so picows.o
You can see exemple into PicoTU project
gcc -O0 -g3 -Wall -c -fmessage-length=0 -I picoWS/ picoTU/picoTU.c
gcc -L"." -o picows picoTU.o -lpicows
You can start the web server with port and resources like this :
LD_LIBRARY_PATH=. ./picows 9999 picoTU/Resources/
With your browser go to http://localhost:9999