eclipseembeddedfcgihttphttp-clienthttp-serverhttp2http2-pushhttp3httpsjakartaeejavajettyjsposgiservletssltlsunix-socketwebsockets
2e66e54425
The reason for the failure of this test was that a BufferedReader was used to read the header lines. However, the buffered reader may have read and buffered also the hixie bytes and subsequently, when the test was trying to read the hixie bytes directly from the input stream (and not from the buffered reader), the read was timing out. Fixed by always using the input stream to read the header and hixie bytes. |
||
---|---|---|
LICENSE-CONTRIBUTOR | ||
example-jetty-embedded | ||
jetty-aggregate | ||
jetty-ajp | ||
jetty-annotations | ||
jetty-client | ||
jetty-continuation | ||
jetty-deploy | ||
jetty-distribution | ||
jetty-http | ||
jetty-http-spi | ||
jetty-io | ||
jetty-jaspi | ||
jetty-jmx | ||
jetty-jndi | ||
jetty-jsp | ||
jetty-monitor | ||
jetty-nested | ||
jetty-nosql | ||
jetty-osgi | ||
jetty-overlay-deployer | ||
jetty-plus | ||
jetty-policy | ||
jetty-rewrite | ||
jetty-security | ||
jetty-server | ||
jetty-servlet | ||
jetty-servlets | ||
jetty-start | ||
jetty-util | ||
jetty-webapp | ||
jetty-websocket | ||
jetty-xml | ||
test-continuation | ||
test-continuation-jetty6 | ||
test-jetty-nested | ||
test-jetty-servlet | ||
test-jetty-webapp | ||
tests | ||
.gitignore | ||
BUILDING.txt | ||
LICENSE-APACHE-2.0.txt | ||
LICENSE-ECLIPSE-1.0.html | ||
NOTICE.txt | ||
README.txt | ||
VERSION.txt | ||
eclipse-jetty-templates.xml | ||
icon.jpg | ||
pom.xml |
README.txt
This is a source checkout of the Jetty webserver. To build, use: mvn install The jetty distribution will be built in jetty-distribution/target/distribution The first build may take a long time as Maven downloads all the dependencies. The tests do a lot of stress testing, and on some machines it is necessary to set the file descriptor limit to greater than 2048 for the tests to all pass successfully. Bypass tests by building with -Dmaven.test.skip=true but note that this will not produce some test jars that are leveraged in other places in the build.