tree: 50c33fa4e88488545a5df558f750a3d925954e8e [path history] [tgz]
  1. mount-origin/
  2. CMakeLists.txt
  3. minimal-ws-server.c
  4. protocol_lws_minimal.c
  5. README.md
minimal-examples/ws-server/minimal-ws-server-threads/README.md

lws minimal ws server (threads)

build

 $ cmake . && make

Pthreads is required on your system.

usage

 $ ./lws-minimal-ws-server-threads
[2018/03/13 13:09:52:2208] USER: LWS minimal ws server + threads | visit http://localhost:7681
[2018/03/13 13:09:52:2365] NOTICE: Creating Vhost 'default' port 7681, 2 protocols, IPv6 off

Visit http://localhost:7681 on multiple browser windows

Two asynchronous threads generate strings and add them to a ringbuffer, signalling lws to send new entries to all the browser windows.

This demonstrates how to safely manage asynchronously generated content and hook it up to the lws service thread.