• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

mount-origin/23-Nov-2023-147140

CMakeLists.txtD23-Nov-20232.1 KiB8070

README.mdD23-Nov-2023792 2819

localhost-100y.certD23-Nov-20232.1 KiB3534

localhost-100y.keyD23-Nov-20233.2 KiB5352

minimal-http-server-eventlib.cD23-Nov-20233.4 KiB12387

README.md

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