1# lws minimal http server eventlib 2 3This demonstrates a minimal http server that can use any of the event libraries 4 5Commandline option|Meaning 6---|--- 7-d <loglevel>|Debug verbosity in decimal, eg, -d15 8--uv|Use the libuv event library (lws must have been configured with `-DLWS_WITH_LIBUV=1`) 9--event|Use the libevent library (lws must have been configured with `-DLWS_WITH_LIBEVENT=1`) 10--ev|Use the libev event library (lws must have been configured with `-DLWS_WITH_LIBEV=1`) 11 12## build 13 14``` 15 $ cmake . && make 16``` 17 18## usage 19 20``` 21 $ ./lws-minimal-http-server-eventlib 22[2018/03/04 09:30:02:7986] USER: LWS minimal http server-eventlib | visit http://localhost:7681 23[2018/03/04 09:30:02:7986] NOTICE: Creating Vhost 'default' port 7681, 1 protocols, IPv6 on 24``` 25 26Visit http://localhost:7681 27 28