Skip to content

Commit

Permalink
Merge pull request #14960 from yehudasa/wip-19704
Browse files Browse the repository at this point in the history
kraken: civetweb: move to post 1.8 version

Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
  • Loading branch information
yehudasa committed Jul 18, 2017
2 parents 1913303 + 47f751f commit 5ea47f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/civetweb
Submodule civetweb updated 96 files
+8 −0 .gitattributes
+4 −0 .gitignore
+95 −4 .travis.yml
+23 −9 CMakeLists.txt
+19 −1 CREDITS.md
+3 −1 Makefile
+1 −1 Makefile.osx
+48 −21 README.md
+19 −5 RELEASE_NOTES.md
+0 −171 VS2012/civetweb.sln
+0 −0 VisualStudio/buildRelease.pl
+75 −0 VisualStudio/civetweb.sln
+0 −0 VisualStudio/civetweb/civetweb.vcxproj
+0 −0 VisualStudio/civetweb/civetweb.vcxproj.filters
+11 −41 VisualStudio/civetweb_lua/civetweb_lua.vcxproj
+3 −0 VisualStudio/civetweb_lua/civetweb_lua.vcxproj.filters
+0 −0 VisualStudio/civetweb_yassl/civetweb_yassl.sln
+0 −0 VisualStudio/civetweb_yassl/civetweb_yassl/civetweb_yassl.vcxproj
+0 −0 VisualStudio/civetweb_yassl/civetweb_yassl/civetweb_yassl.vcxproj.filters
+0 −0 VisualStudio/civetweb_yassl/yassl_lib/yassl_lib.vcxproj
+0 −0 VisualStudio/civetweb_yassl/yassl_lib/yassl_lib.vcxproj.filters
+8 −7 VisualStudio/duktape_lib/duktape_lib.vcxproj
+0 −0 VisualStudio/duktape_lib/duktape_lib.vcxproj.filters
+11 −10 VisualStudio/ex_embed_cpp/ex_embed_cpp.vcxproj
+0 −0 VisualStudio/ex_embed_cpp/ex_embed_cpp.vcxproj.filters
+11 −10 VisualStudio/ex_embedded_c/ex_embedded_c.vcxproj
+0 −0 VisualStudio/ex_embedded_c/ex_embedded_c.vcxproj.filters
+9 −7 VisualStudio/ex_websocket/ex_websocket.vcxproj
+0 −0 VisualStudio/ex_websocket/ex_websocket.vcxproj.filters
+9 −7 VisualStudio/ex_websocket_client/ex_websocket_client.vcxproj
+0 −0 VisualStudio/ex_websocket_client/ex_websocket_client.vcxproj.filters
+11 −10 VisualStudio/lua_lib/lua_lib.vcxproj
+0 −0 VisualStudio/lua_lib/lua_lib.vcxproj.filters
+7 −6 VisualStudio/unit_test/unit_test.vcxproj
+0 −0 VisualStudio/unit_test/unit_test.vcxproj.filters
+12 −11 VisualStudio/upload/upload.vcxproj
+0 −0 VisualStudio/upload/upload.vcxproj.filters
+39 −13 appveyor.yml
+31 −0 cmake/check/c82fe8888aacfe784476112edd3878256d2e30bc.patch
+14 −7 docs/Building.md
+4 −4 docs/Contribution.md
+17 −10 docs/Embedding.md
+10 −10 docs/OpenSSL.md
+35 −1 docs/UserManual.md
+7 −6 docs/yaSSL.md
+126 −52 examples/embedded_c/embedded_c.c
+9 −4 examples/embedded_cpp/embedded_cpp.cpp
+6 −0 examples/upload/upload.c
+6 −1 examples/websocket_client/websocket_client.c
+26 −2 include/CivetServer.h
+208 −11 include/civetweb.h
+8 −5 resources/coverity_check.sh
+ resources/duktape-logo.png
+15 −0 resources/mingw.bat
+5 −5 src/CMakeLists.txt
+21 −7 src/CivetServer.cpp
+884 −470 src/civetweb.c
+364 −261 src/handle_form.inl
+97 −35 src/main.c
+1 −1 src/md5.inl
+136 −4 src/mod_lua.inl
+1 −1 src/third_party/sqlite3.c
+7 −0 src/timer.inl
+4 −12 test/100images.htm
+26 −18 test/CMakeLists.txt
+2 −1 test/ajax/test.html
+40 −0 test/cgi_test.c
+12 −0 test/cgi_test.html
+93 −0 test/filehandler.lua
+5 −0 test/hello.shtml
+2 −2 test/linux.cgi
+5 −1 test/main.c
+13 −0 test/page4.lua
+173 −21 test/private.c
+3 −1 test/private_exe.c
+72 −3 test/public_func.c
+1,504 −59 test/public_server.c
+1 −1 test/shared.c
+0 −5 test/ssi1.shtml
+0 −5 test/ssi2.shtml
+0 −5 test/ssi3.shtml
+0 −5 test/ssi4.shtml
+0 −5 test/ssi5.shtml
+0 −5 test/ssi6.shtml
+0 −6 test/ssi7.shtml
+0 −1 test/ssi8.shtml
+0 −3 test/ssi9.shtml
+37 −0 test/ssi_test.shtml
+53 −62 test/unit_test.c
+0 −119 testutils/Browser/Browser.cpp
+0 −90 testutils/Browser/Browser.vcxproj
+0 −5 testutils/readme.txt
+0 −372 testutils/testclient/testclient.c
+0 −91 testutils/testclient/testclient.vcxproj
+0 −239 testutils/testclient_chunked_linux/testclient.c
+0 −91 testutils/testclient_chunked_linux/testclient2.vcxproj

0 comments on commit 5ea47f7

Please sign in to comment.