зеркало из https://github.com/mono/xsp.git
3330ff0790
* Fixed request id generation when growing requests array is needed. Previously: incorrect index is used after growing request arrays. At the end of GrowRequests(), arrays would have size `newsize'. But `newsize+1' was used as index into array (which would always fail with IndexOutOfRangeException). This might have gone undetected because it only manifests itself when there are >= 200 concurrent requests (since arrays start with size 200). * Remove obsolete xmldoc Co-authored-by: Dmitry Kalyanov <kalyanov@bars.group> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com> |
||
---|---|---|
build | ||
docs | ||
lib | ||
man | ||
packaging | ||
scripts | ||
shim | ||
src | ||
test | ||
test-fpm | ||
test2 | ||
tools | ||
unittests | ||
.gitignore | ||
AUTHORS | ||
CODE-OF-CONDUCT.md | ||
COPYING | ||
ChangeLog | ||
INSTALL | ||
Makefile.am | ||
NEWS | ||
README | ||
README.mono-fpm.md | ||
autogen.sh | ||
configure.ac | ||
xsp.sln | ||
xsp.spec.in |
README
* Welcome to XSP! ----------------- The XSP server is a small web server that hosts the Mono System.Web classes for running what is commonly known as ASP.NET. See INSTALL for details on how to install XSP. * Directory Layout ------------------ doc/ Some documentation about the XSP server. test/ Little sample ASP.NET pages server/ A stand alone web server that works with mono and MS runtime. We are using it to debug/complete our classes. MonoApplicationHost and MonoWorkerRequest can be used to embed an ASP.NET serve in your application. tools/ asp_state, dbsessmgr and nunit-asp Maintainer: gonzalo@ximian.com