per message deflate support (with zlib)

This commit is contained in:
Benjamin Sergeant
2018-11-09 18:23:49 -08:00
parent de8bcd36e8
commit 4fed156b90
32 changed files with 1003 additions and 257 deletions

16
makefile Normal file
View File

@ -0,0 +1,16 @@
#
# This makefile is just used to easily work with docker (linux build)
#
all: run
docker:
docker build -t ws_connect:latest .
run: docker
docker run --cap-add sys_ptrace -it ws_connect:latest bash
build:
(cd examples/satori_publisher ; mkdir -p build ; cd build ; cmake .. ; make)
(cd examples/chat ; mkdir -p build ; cd build ; cmake .. ; make)
(cd examples/ping_pong ; mkdir -p build ; cd build ; cmake .. ; make)
(cd examples/ws_connect ; mkdir -p build ; cd build ; cmake .. ; make)