1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-smp
Andy Green c9731c5f17 type comparisons: fixes
This is a huge patch that should be a global NOP.

For unix type platforms it enables -Wconversion to issue warnings (-> error)
for all automatic casts that seem less than ideal but are normally concealed
by the toolchain.

This is things like passing an int to a size_t argument.  Once enabled, I
went through all args on my default build (which build most things) and
tried to make the removed default cast explicit.

With that approach it neither change nor bloat the code, since it compiles
to whatever it was doing before, just with the casts made explicit... in a
few cases I changed some length args from int to size_t but largely left
the causes alone.

From now on, new code that is relying on less than ideal casting
will complain and nudge me to improve it by warnings.
2021-01-05 10:56:38 +00:00
..
mount-origin lws logo: update minimal examples 2020-03-06 04:46:39 +00:00
CMakeLists.txt cmake: latest cmake shows dep warnings for scripts < 2.8.12 2020-12-06 19:44:54 +00:00
localhost-100y.cert minimal-http-server-eventlib-smp 2019-03-21 10:26:42 +08:00
localhost-100y.key minimal-http-server-eventlib-smp 2019-03-21 10:26:42 +08:00
minimal-http-server-eventlib-smp.c type comparisons: fixes 2021-01-05 10:56:38 +00:00
README.md minimal-http-server-eventlib-smp 2019-03-21 10:26:42 +08:00

lws minimal http server eventlib

WARNING: this is under development, it's not stable.

This demonstrates a minimal http server that can use any of the event libraries

Commandline option Meaning
-d Debug verbosity in decimal, eg, -d15
-t Number of threads to use.
--uv Use the libuv event library (lws must have been configured with -DLWS_WITH_LIBUV=1)
--event Use the libevent library (lws must have been configured with -DLWS_WITH_LIBEVENT=1)
--ev Use the libev event library (lws must have been configured with -DLWS_WITH_LIBEV=1)

build

lilbwebsockets must have been built with LWS_MAX_SMP greater than 1 to use multiple threads.

 $ cmake . && make

usage

 $ ./lws-minimal-http-server-eventlib-smp
[2018/03/04 09:30:02:7986] USER: LWS minimal http server-eventlib | visit http://localhost:7681
[2018/03/04 09:30:02:7986] NOTICE: Creating Vhost 'default' port 7681, 1 protocols, IPv6 on

Visit http://localhost:7681