Compare commits

..

9 Commits

Author SHA1 Message Date
Benjamin Sergeant fcfb7c1739 doc 2019-06-23 14:53:16 -07:00
Benjamin Sergeant 92c2a7756d rewrite http::trim in a simple way 2019-06-23 14:32:17 -07:00
Benjamin Sergeant f458cd297e add missing file 2019-06-23 13:35:04 -07:00
Benjamin Sergeant 19a959dc31 tweak CI + unittest 2019-06-23 13:30:10 -07:00
Benjamin Sergeant cfc1b8f1c2 add simple test + set default http handler 2019-06-23 13:21:27 -07:00
Benjamin Sergeant 22b8fc831c remove commented code 2019-06-20 19:43:38 -07:00
Benjamin Sergeant 15fa328a65 write headers to the response 2019-06-20 19:27:12 -07:00
Benjamin Sergeant 74cc6b815a can send a response, cannot process body yet 2019-06-20 16:20:04 -07:00
Benjamin Sergeant 44f37a4140 Stub code for http server 2019-06-20 15:03:17 -07:00
2 changed files with 24 additions and 24 deletions
+23 -23
View File
@@ -6,21 +6,21 @@ language: bash
matrix:
include:
# macOS
# - os: osx
# compiler: clang
# script:
# - python test/run.py
# - make ws
- os: osx
compiler: clang
script:
- python test/run.py
- make ws
# # Linux
# - os: linux
# dist: xenial
# script:
# - python test/run.py
# - make ws
# env:
# - CC=gcc
# - CXX=g++
# Linux
- os: linux
dist: xenial
script:
- python test/run.py
- make ws
env:
- CC=gcc
- CXX=g++
# Clang + Linux disabled for now
# - os: linux
@@ -30,12 +30,12 @@ matrix:
# - CC=clang
# - CXX=clang++
Windows
- os: windows
env:
- CMAKE_PATH="/c/Program Files/CMake/bin"
script:
- export PATH=$CMAKE_PATH:$PATH
# - cmake -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 -DUSE_VENDORED_THIRD_PARTY=1 .
# - cmake --build --parallel .
- python test/run.py
# Windows
# - os: windows
# env:
# - CMAKE_PATH="/c/Program Files/CMake/bin"
# script:
# - export PATH=$CMAKE_PATH:$PATH
# # - cmake -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 -DUSE_VENDORED_THIRD_PARTY=1 .
# # - cmake --build --parallel .
# - python test/run.py
+1 -1
View File
@@ -1 +1 @@
5.0.0
4.0.4