@@ -91,18 +91,18 @@ Indices
9191@noindent
9292libhttpserver is meant to constitute an easy system to build HTTP
9393servers with REST fashion.
94- libhttpserver is based on libhttpserver and, like this, it is a
94+ libhttpserver is based on libmicrohttpd and, like this, it is a
9595daemon library.
9696The mission of this library is to support all possible HTTP features
9797directly and with a simple semantic allowing then the user to concentrate
98- only on his application and not in HTTP handling details.
98+ only on his application and not on HTTP request handling details.
9999
100100The library is supposed to work transparently for the client Implementing
101101the business logic and using the library itself to realize an interface.
102102If the user wants it must be able to change every behavior of the library
103103itself through the registration of callbacks.
104104
105- Like the api is based on (libhttpserver ), libhttpserver is able to decode
105+ Like the api is based on (libmicrohttpd ), libhttpserver is able to decode
106106certain body format a and automatically format them in object oriented
107107fashion. This is true for query arguments and for @code {POST } and @code {PUT }
108108requests bodies if @code {application/x-www-form-urlencoded } or
@@ -128,6 +128,9 @@ used per connection to avoid resource exhaustion.
128128libhttpserver uses the standard system where the usual build process
129129involves running
130130@verbatim
131+ $ ./bootstrap
132+ $ mkdir build
133+ $ cd build
131134$ ./configure
132135$ make
133136$ make install
0 commit comments