Use custom Server header in http response

This commit is contained in:
Shuanglei Tao
2016-10-06 15:01:41 +08:00
parent 9636a9ba1e
commit f3d06b2857
2 changed files with 9 additions and 3 deletions

View File

@@ -18,11 +18,11 @@ addons:
- libssl-dev
install:
- echo $TRAVIS_OS_NAME
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; brew unlink cmake json-c; brew install cmake openssl json-c; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install cmake openssl json-c; export CMAKE_OPTIONS="-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl"; fi
- echo "Compiling libwebsockets-$LIBWEBSOCKETS_VERSION from source..."
- pushd /tmp; curl -sLo- https://github.com/warmcat/libwebsockets/archive/$LIBWEBSOCKETS_VERSION.tar.gz | tar xz; cd libwebsockets-*; cmake .; make && sudo make install; popd
- pushd /tmp; curl -sLo- https://github.com/warmcat/libwebsockets/archive/$LIBWEBSOCKETS_VERSION.tar.gz | tar xz; cd libwebsockets-*; cmake $CMAKE_OPTIONS .; make && sudo make install; popd
script:
- echo $TRAVIS_OS_NAME
- cmake --version
- mkdir build && cd build
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl .. && make; else cmake .. && make; fi
- cmake $CMAKE_OPTIONS .. && make

View File

@@ -272,6 +272,12 @@ main(int argc, char **argv) {
lws_set_log_level(debug_level, NULL);
#if LWS_LIBRARY_VERSION_MAJOR == 2
char server_hdr[128] = "";
sprintf(server_hdr, "ttyd/%s (libwebsockets/%s)", TTYD_VERSION, LWS_LIBRARY_VERSION);
info.server_string = server_hdr;
#endif
if (strlen(iface) > 0)
info.iface = iface;
if (ssl) {