[Git][java-team/jetty9][bookworm] 47 commits: Import Debian changes 9.4.39-3+deb11u1
Markus Koschany (@apo)
gitlab at salsa.debian.org
Mon Apr 7 07:46:29 BST 2025
Markus Koschany pushed to branch bookworm at Debian Java Maintainers / jetty9
Commits:
9fc4fce6 by Markus Koschany at 2022-08-02T15:57:08+02:00
Import Debian changes 9.4.39-3+deb11u1
jetty9 (9.4.39-3+deb11u1) bullseye-security; urgency=high
.
* Team upload.
* Fix CVE-2022-2047:
In Eclipse Jetty the parsing of the authority segment of an http scheme
URI, the Jetty HttpURI class improperly detects an invalid input as a
hostname. This can lead to failures in a Proxy scenario.
* Fix CVE-2022-2048:
In Eclipse Jetty HTTP/2 server implementation, when encountering an invalid
HTTP/2 request, the error handling has a bug that can wind up not properly
cleaning up the active connections and associated resources. This can lead
to a Denial of Service scenario where there are no enough resources left to
process good requests.
- - - - -
f6d36379 by sun min at 2023-03-03T11:56:42+08:00
Replace depedency lsb-base with sysvinit-utils
- - - - -
5b531147 by sun min at 2023-03-03T11:57:35+08:00
Add a systemd timer for jetty9.service
- - - - -
b7751744 by sun min at 2023-03-03T11:58:40+08:00
Update d/changelog for version 9.4.50-4
- - - - -
d0785b3e by sun min at 2023-03-28T09:41:31+08:00
Update upstream source from tag 'upstream/9.4.51'
Update to upstream version '9.4.51'
with Debian dir 559e4193a25981d3d474503fc613b67b5b704e9f
- - - - -
ac3b7538 by sun min at 2023-03-28T09:41:31+08:00
New upstream version 9.4.51
- - - - -
267dbd4e by sun min at 2023-03-29T10:09:55+08:00
Fix mismatched-override dh-exec-subst-unknown-variable * VERSION
- - - - -
5d4883b6 by sun min at 2023-03-29T11:32:56+08:00
Update changelog for version 9.4.51-1
- - - - -
1874d6c2 by Pierre Gruet at 2023-03-29T12:02:08+02:00
Fixing mispell in d/changelog
- - - - -
5a67a795 by Markus Koschany at 2023-05-27T16:53:19+02:00
Revert "Depend on libtomcat10-java instead of libtomcat9-java."
This reverts commit 32850e32e751a5403a8e7d08acb091d2a1a9669c.
- - - - -
e9804892 by Markus Koschany at 2023-05-27T16:53:19+02:00
Revert "Add tomcat10-migration.patch"
This reverts commit 0b19ea27598f899e50e170b9ef9ab9796953edd4.
- - - - -
4c4b038f by Markus Koschany at 2023-05-27T16:53:19+02:00
Revert "Ignore jetty-jaspi module."
This reverts commit a129a902d27f1cc880ad984bacd3cb3f7a0e7d1f.
- - - - -
62889a25 by Markus Koschany at 2023-05-27T16:53:19+02:00
Revert "Ignore jetty-jaspi also in maven.ignoreRules"
This reverts commit b6acbeecb93a72dfa1fb53cea6619a4bcf6f9675.
- - - - -
eacd22a2 by Markus Koschany at 2023-05-27T16:53:19+02:00
Update changelog
- - - - -
e55345f8 by Markus Koschany at 2023-09-24T00:57:31+02:00
Merge remote-tracking branch 'origin/experimental'
- - - - -
d2ddc0d8 by Markus Koschany at 2023-09-24T01:04:52+02:00
New upstream version 9.4.52
- - - - -
237191b9 by Markus Koschany at 2023-09-24T01:05:16+02:00
Update upstream source from tag 'upstream/9.4.52'
Update to upstream version '9.4.52'
with Debian dir 1206e9e23a956dd6d71bf00b0916dd509208eb62
- - - - -
362f7874 by Markus Koschany at 2023-09-24T01:39:04+02:00
Refresh the patches
- - - - -
c2c9f1af by Markus Koschany at 2023-09-24T01:39:44+02:00
Update copyright years
- - - - -
41810098 by Markus Koschany at 2023-09-24T01:45:21+02:00
Update changelog
- - - - -
8648cca8 by Markus Koschany at 2023-09-30T14:19:09+02:00
Import Debian changes 9.4.39-3+deb11u2
jetty9 (9.4.39-3+deb11u2) bullseye-security; urgency=high
.
* Team upload.
* The org.eclipse.jetty.servlets.CGI has been deprecated. It is potentially
unsafe to use it. The upstream developers of Jetty recommend to use Fast CGI
instead. See also CVE-2023-36479.
* Fix CVE-2023-26048:
Jetty is a java based web server and servlet engine. In affected versions
servlets with multipart support (e.g. annotated with `@MultipartConfig`)
that call `HttpServletRequest.getParameter()` or
`HttpServletRequest.getParts()` may cause `OutOfMemoryError` when the
client sends a multipart request with a part that has a name but no
filename and very large content. This happens even with the default
settings of `fileSizeThreshold=0` which should stream the whole part
content to disk.
* Fix CVE-2023-26049:
Nonstandard cookie parsing in Jetty may allow an attacker to smuggle
cookies within other cookies, or otherwise perform unintended behavior by
tampering with the cookie parsing mechanism.
* Fix CVE-2023-40167:
Prior to this version Jetty accepted the `+` character proceeding the
content-length value in a HTTP/1 header field. This is more permissive than
allowed by the RFC and other servers routinely reject such requests with
400 responses. There is no known exploit scenario, but it is conceivable
that request smuggling could result if jetty is used in combination with a
server that does not close the connection after sending such a 400
response.
* CVE-2023-36479:
Users of the CgiServlet with a very specific command structure may have the
wrong command executed. If a user sends a request to a
org.eclipse.jetty.servlets.CGI Servlet for a binary with a space in its
name, the servlet will escape the command by wrapping it in quotation
marks. This wrapped command, plus an optional command prefix, will then be
executed through a call to Runtime.exec. If the original binary name
provided by the user contains a quotation mark followed by a space, the
resulting command line will contain multiple tokens instead of one.
* Fix CVE-2023-41900:
Jetty is vulnerable to weak authentication. If a Jetty
`OpenIdAuthenticator` uses the optional nested `LoginService`, and that
`LoginService` decides to revoke an already authenticated user, then the
current request will still treat the user as authenticated. The
authentication is then cleared from the session and subsequent requests
will not be treated as authenticated. So a request on a previously
authenticated session could be allowed to bypass authentication after it
had been rejected by the `LoginService`. This impacts usages of the
jetty-openid which have configured a nested `LoginService` and where that
`LoginService` is capable of rejecting previously authenticated users.
- - - - -
aabd7fb5 by Emmanuel Bourg at 2023-10-09T22:50:55+02:00
New upstream version 9.4.53
- - - - -
4f98b34e by Emmanuel Bourg at 2023-10-09T22:51:01+02:00
Update upstream source from tag 'upstream/9.4.53'
Update to upstream version '9.4.53'
with Debian dir b3590d3a2b0e43a051f69973e010afde2db6a8d0
- - - - -
f91c35dc by Emmanuel Bourg at 2023-10-09T23:07:40+02:00
New upstream release (9.4.53)
- - - - -
038b6bc7 by Markus Koschany at 2023-10-30T17:31:26+01:00
Import Debian changes 9.4.50-4+deb11u1
jetty9 (9.4.50-4+deb11u1) bullseye-security; urgency=high
.
* Team upload.
* Backport Jetty 9 version from Bookworm.
* Fix CVE-2023-36478 and CVE-2023-44487:
Two remotely exploitable security vulnerabilities were discovered in Jetty
9, a Java based web server and servlet engine. The HTTP/2 protocol
implementation did not sufficiently verify if HPACK header values exceed
their size limit. Furthermore the HTTP/2 protocol allowed a denial of
service (server resource consumption) because request cancellation can
reset many streams quickly. This problem is also known as Rapid Reset
Attack.
.
jetty9 (9.4.50-4+deb12u1) bookworm-security; urgency=high
.
* Team upload.
* The org.eclipse.jetty.servlets.CGI has been deprecated. It is potentially
unsafe to use it. The upstream developers of Jetty recommend to use Fast CGI
instead. See also CVE-2023-36479.
* Fix CVE-2023-26048:
Jetty is a java based web server and servlet engine. In affected versions
servlets with multipart support (e.g. annotated with `@MultipartConfig`)
that call `HttpServletRequest.getParameter()` or
`HttpServletRequest.getParts()` may cause `OutOfMemoryError` when the
client sends a multipart request with a part that has a name but no
filename and very large content. This happens even with the default
settings of `fileSizeThreshold=0` which should stream the whole part
content to disk.
* Fix CVE-2023-26049:
Nonstandard cookie parsing in Jetty may allow an attacker to smuggle
cookies within other cookies, or otherwise perform unintended behavior by
tampering with the cookie parsing mechanism.
* Fix CVE-2023-40167:
Prior to this version Jetty accepted the `+` character proceeding the
content-length value in a HTTP/1 header field. This is more permissive than
allowed by the RFC and other servers routinely reject such requests with
400 responses. There is no known exploit scenario, but it is conceivable
that request smuggling could result if jetty is used in combination with a
server that does not close the connection after sending such a 400
response.
* CVE-2023-36479:
Users of the CgiServlet with a very specific command structure may have the
wrong command executed. If a user sends a request to a
org.eclipse.jetty.servlets.CGI Servlet for a binary with a space in its
name, the servlet will escape the command by wrapping it in quotation
marks. This wrapped command, plus an optional command prefix, will then be
executed through a call to Runtime.exec. If the original binary name
provided by the user contains a quotation mark followed by a space, the
resulting command line will contain multiple tokens instead of one.
* Fix CVE-2023-41900:
Jetty is vulnerable to weak authentication. If a Jetty
`OpenIdAuthenticator` uses the optional nested `LoginService`, and that
`LoginService` decides to revoke an already authenticated user, then the
current request will still treat the user as authenticated. The
authentication is then cleared from the session and subsequent requests
will not be treated as authenticated. So a request on a previously
authenticated session could be allowed to bypass authentication after it
had been rejected by the `LoginService`. This impacts usages of the
jetty-openid which have configured a nested `LoginService` and where that
`LoginService` is capable of rejecting previously authenticated users.
.
jetty9 (9.4.50-4) unstable; urgency=medium
.
* Team upload.
* Revert the switch to libtomcat10-java. For now Jetty 9 only works correctly
with libtomcat9-java. (Closes: #1036798)
.
jetty9 (9.4.50-3) unstable; urgency=medium
.
* Team upload.
* Depend on libtomcat10-java instead of libtomcat9-java.
* Add tomcat10-migration.patch.
* Ignore jetty-jaspi module because it does not work with Tomcat 10 yet.
.
jetty9 (9.4.50-2) unstable; urgency=medium
.
* Depend on libeclipse-jdt-core-java instead of libecj-java
* Standards-Version updated to 4.6.2
.
jetty9 (9.4.50-1) unstable; urgency=medium
.
* New upstream release
- Refreshed the patches
.
jetty9 (9.4.49-1) unstable; urgency=medium
.
* Team upload.
* New upstream version 9.4.49.
.
jetty9 (9.4.48-1) unstable; urgency=high
.
* Team upload.
* New upstream version 9.4.48.
- Fix CVE-2022-2048 and CVE-2022-2047.
.
jetty9 (9.4.46-1) unstable; urgency=medium
.
* New upstream release
- Refreshed the patches
.
jetty9 (9.4.45-1) unstable; urgency=medium
.
* Team upload.
* New upstream version 9.4.45.
* Remove haproxy binary file from the sources.
.
jetty9 (9.4.44-4) unstable; urgency=medium
.
* Team upload.
* Add servlet-api.patch and correct the API version in jetty-home/pom.xml.
This used to work because libservlet3.1-java was pulled in as a transitive
dependency. (Closes: #1002274)
.
jetty9 (9.4.44-3) unstable; urgency=medium
.
* Team upload.
* Ignore junit-bom artifact of scope import.
The junit-bom dependency caused several FTBFS because of
reverse-dependencies that did not depend on junit5.
.
jetty9 (9.4.44-2) unstable; urgency=medium
.
* Team upload.
* Update README.Debian and clarify how to override systemd security features.
(Closes: #994440)
* Replace deprecated configuration options in start.ini.
Thanks to Martin van Es for the report. (Closes: #994441)
.
jetty9 (9.4.44-1) unstable; urgency=medium
.
* New upstream release
- Refreshed the patches
- Updated the Maven rules
* Depend on libservlet-api-java instead of libservlet3.1-java
* No longer remove the jetty user/group when purging the package
* Standards-Version updated to 4.6.0.1
* Switch to debhelper level 13
- - - - -
f4894531 by Markus Koschany at 2024-04-06T12:53:57+02:00
New upstream version 9.4.54
- - - - -
cf7319f1 by Markus Koschany at 2024-04-06T12:54:07+02:00
Update upstream source from tag 'upstream/9.4.54'
Update to upstream version '9.4.54'
with Debian dir e966b2762c86998f8209c507a40202f2f6bef091
- - - - -
604c3ff4 by Markus Koschany at 2024-04-06T12:57:47+02:00
Update changelog
- - - - -
7905ce35 by Markus Koschany at 2024-04-18T22:25:50+02:00
Import Debian changes 9.4.50-4+deb11u2
jetty9 (9.4.50-4+deb11u2) bullseye-security; urgency=high
.
* Team upload.
* Fix CVE-2024-22201:
It was discovered that remote attackers may leave many HTTP/2 connections
in ESTABLISHED state (not closed), TCP congested and idle. Eventually the
server will stop accepting new connections from valid clients which can
cause a denial of service.
- - - - -
3f69de26 by Emmanuel Bourg at 2024-08-02T08:48:01+02:00
Standards-Version updated to 4.7.0
- - - - -
35f0ba38 by Emmanuel Bourg at 2024-08-02T08:48:57+02:00
New upstream version 9.4.55
- - - - -
3d3b60b7 by Emmanuel Bourg at 2024-08-02T08:49:03+02:00
Update upstream source from tag 'upstream/9.4.55'
Update to upstream version '9.4.55'
with Debian dir a88190217c1d975491b382261eff579d5a4182d3
- - - - -
0f4e4b58 by Emmanuel Bourg at 2024-08-02T08:51:27+02:00
Refreshed the patches
- - - - -
092fce18 by Emmanuel Bourg at 2024-08-02T08:55:26+02:00
Upload to unstable
- - - - -
cfa9584e by Emmanuel Bourg at 2024-10-07T17:26:28+02:00
New upstream version 9.4.56
- - - - -
dce86b6d by Emmanuel Bourg at 2024-10-07T17:26:34+02:00
Update upstream source from tag 'upstream/9.4.56'
Update to upstream version '9.4.56'
with Debian dir eab2b7c27f1aa62976c472e927423c1525dfcd1c
- - - - -
ffc5bb46 by Emmanuel Bourg at 2024-10-07T17:28:46+02:00
New upstream release (9.4.56)
- - - - -
b409e694 by Emmanuel Bourg at 2025-03-03T13:03:09+01:00
New upstream version 9.4.57
- - - - -
9d4d3aef by Emmanuel Bourg at 2025-03-03T13:03:15+01:00
Update upstream source from tag 'upstream/9.4.57'
Update to upstream version '9.4.57'
with Debian dir 9c8b14cadc1875edf68512e76d07f41fb9981c51
- - - - -
6c2dc40e by Emmanuel Bourg at 2025-03-03T13:04:24+01:00
New upstream release (9.4.57)
- - - - -
0de1f6cb by Markus Koschany at 2025-04-01T19:20:58+02:00
Merge branch 'master' into bullseye
- - - - -
46010ee4 by Markus Koschany at 2025-04-01T20:13:18+02:00
Update changelog
- - - - -
5208a080 by Markus Koschany at 2025-04-01T20:14:43+02:00
Refresh 04-weksocket-1.1-compatibility.patch
- - - - -
ed43e7cb by Markus Koschany at 2025-04-01T20:52:04+02:00
Remove obsolete CVE patches
- - - - -
e78454be by Markus Koschany at 2025-04-02T03:01:20+02:00
Merge branch 'bullseye' into bookworm
- - - - -
6b3404bf by Markus Koschany at 2025-04-02T03:01:47+02:00
Remove obsolete patches
- - - - -
741d6476 by Markus Koschany at 2025-04-02T03:16:33+02:00
Update changelog
- - - - -
629 changed files:
- + CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- Jenkinsfile
- KEYS.txt
- NOTICE.txt
- README.md
- VERSION.txt
- aggregates/jetty-all-compact3/pom.xml
- aggregates/jetty-all/pom.xml
- aggregates/jetty-all/src/main/resources/META-INF/MANIFEST.MF
- aggregates/jetty-websocket-all/pom.xml
- apache-jsp/pom.xml
- apache-jsp/src/main/config/modules/apache-jsp.mod
- apache-jstl/pom.xml
- apache-jstl/src/main/config/modules/apache-jstl.mod
- build-resources/pom.xml
- debian/changelog
- debian/control
- debian/copyright
- debian/jetty9.install
- + debian/jetty9.timer
- debian/patches/01-maven-bundle-plugin-version.patch
- debian/patches/02-import-alpn-api.patch
- debian/patches/04-weksocket-1.1-compatibility.patch
- debian/patches/06-ignore-jetty-documentation.patch
- debian/patches/07-assembly-plugin-configuration.patch
- debian/patches/08-ignore-jetty-test-policy.patch
- debian/patches/09-tweak-distribution.patch
- − debian/patches/CVE-2023-26048.patch
- − debian/patches/CVE-2023-26049.patch
- − debian/patches/CVE-2023-36478.patch
- − debian/patches/CVE-2023-36479.patch
- − debian/patches/CVE-2023-40167.patch
- − debian/patches/CVE-2023-41900.patch
- − debian/patches/CVE-2023-44487.patch
- − debian/patches/CVE-2024-22201.patch
- debian/patches/series
- debian/patches/servlet-api.patch
- debian/source/lintian-overrides
- examples/async-rest/async-rest-jar/pom.xml
- examples/async-rest/async-rest-webapp/pom.xml
- examples/async-rest/async-rest-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- examples/async-rest/pom.xml
- examples/embedded/pom.xml
- examples/embedded/src/main/resources/exampleserver.xml
- examples/embedded/src/main/resources/fileserver.xml
- examples/embedded/src/main/resources/jetty-otherserver.xml
- examples/pom.xml
- jetty-alpn/jetty-alpn-client/pom.xml
- jetty-alpn/jetty-alpn-conscrypt-client/pom.xml
- jetty-alpn/jetty-alpn-conscrypt-server/pom.xml
- jetty-alpn/jetty-alpn-java-client/pom.xml
- jetty-alpn/jetty-alpn-java-server/pom.xml
- jetty-alpn/jetty-alpn-openjdk8-client/pom.xml
- jetty-alpn/jetty-alpn-openjdk8-server/pom.xml
- jetty-alpn/jetty-alpn-server/pom.xml
- jetty-alpn/jetty-alpn-server/src/main/config/etc/jetty-alpn.xml
- jetty-alpn/jetty-alpn-server/src/main/config/modules/alpn-impl/alpn-available-false.mod
- jetty-alpn/jetty-alpn-server/src/main/config/modules/alpn-impl/alpn-available-true.mod
- jetty-alpn/jetty-alpn-server/src/main/config/modules/alpn.mod
- jetty-alpn/pom.xml
- jetty-annotations/pom.xml
- jetty-annotations/src/main/config/etc/jetty-annotations.xml
- jetty-annotations/src/main/config/modules/annotations.mod
- jetty-ant/pom.xml
- jetty-bom/pom.xml
- jetty-cdi/pom.xml
- jetty-cdi/src/main/config/etc/cdi/jetty-cdi.xml
- jetty-cdi/src/main/config/etc/cdi/jetty-cdi2.xml
- jetty-cdi/src/main/config/etc/cdi/jetty-web-cdi2.xml
- jetty-cdi/src/main/config/modules/cdi-decorate.mod
- jetty-cdi/src/main/config/modules/cdi-spi.mod
- jetty-cdi/src/main/config/modules/cdi.mod
- jetty-cdi/src/main/config/modules/cdi2.mod
- jetty-client/pom.xml
- jetty-client/src/main/config/modules/client.mod
- jetty-client/src/test/java/org/eclipse/jetty/client/HttpClientTLSTest.java
- jetty-continuation/pom.xml
- jetty-deploy/pom.xml
- jetty-deploy/src/main/config/etc/jetty-decorate.xml
- jetty-deploy/src/main/config/etc/jetty-deploy.xml
- jetty-deploy/src/main/config/etc/jetty-web-decorate.xml
- jetty-deploy/src/main/config/modules/decorate.mod
- jetty-deploy/src/main/config/modules/deploy.mod
- jetty-deploy/src/main/config/modules/global-webapp-common.d/global-webapp-common.xml
- jetty-deploy/src/main/config/modules/global-webapp-common.d/webapp-common.xml
- jetty-deploy/src/main/config/modules/global-webapp-common.mod
- jetty-deploy/src/test/java/org/eclipse/jetty/deploy/DeploymentTempDirTest.java
- jetty-deploy/src/test/resources/binding-test-contexts-1.xml
- jetty-deploy/src/test/resources/context-binding-test-1.xml
- jetty-deploy/src/test/resources/jetty-deploy-wars.xml
- jetty-deploy/src/test/resources/jetty-deploymgr-contexts.xml
- jetty-deploy/src/test/resources/jetty-http.xml
- jetty-deploy/src/test/resources/jetty.xml
- jetty-deploy/src/test/resources/webapps/badapp/badapp.xml
- jetty-deploy/src/test/resources/webapps/foo.xml
- jetty-distribution/pom.xml
- jetty-distribution/src/main/resources/README.TXT
- jetty-distribution/src/main/resources/demo-base/webapps/ROOT/index.html
- jetty-distribution/src/main/resources/demo-base/webapps/example-moved.xml
- jetty-distribution/src/main/resources/start.ini
- jetty-fcgi/fcgi-client/pom.xml
- jetty-fcgi/fcgi-server/pom.xml
- jetty-fcgi/fcgi-server/src/main/config/modules/fcgi.mod
- jetty-fcgi/pom.xml
- jetty-gcloud/jetty-gcloud-session-manager/pom.xml
- jetty-gcloud/jetty-gcloud-session-manager/src/main/config-template/etc/sessions/gcloud/session-store.xml
- jetty-gcloud/jetty-gcloud-session-manager/src/main/config-template/modules/gcloud-datastore.mod
- jetty-gcloud/jetty-gcloud-session-manager/src/main/config-template/modules/gcloud.mod
- jetty-gcloud/jetty-gcloud-session-manager/src/main/config-template/modules/session-store-gcloud.mod
- jetty-gcloud/pom.xml
- jetty-hazelcast/pom.xml
- jetty-hazelcast/src/main/config/etc/sessions/hazelcast/default.xml
- jetty-hazelcast/src/main/config/etc/sessions/hazelcast/remote.xml
- jetty-hazelcast/src/main/config/modules/session-store-hazelcast-embedded.mod
- jetty-hazelcast/src/main/config/modules/session-store-hazelcast-remote.mod
- jetty-home/pom.xml
- jetty-home/src/main/resources/etc/jetty-setuid.xml
- jetty-home/src/main/resources/etc/jetty-started.xml
- jetty-home/src/main/resources/etc/jetty-stop.xml
- jetty-home/src/main/resources/modules/conscrypt.mod
- jetty-home/src/main/resources/modules/conscrypt/conscrypt.xml
- jetty-home/src/main/resources/modules/hawtio.mod
- jetty-home/src/main/resources/modules/hawtio/hawtio.xml
- jetty-home/src/main/resources/modules/jamon.mod
- jetty-home/src/main/resources/modules/jamon/jamon.xml
- jetty-home/src/main/resources/modules/jminix.mod
- jetty-home/src/main/resources/modules/jminix/jminix.xml
- jetty-home/src/main/resources/modules/jolokia.mod
- jetty-home/src/main/resources/modules/jolokia/jolokia.xml
- jetty-home/src/main/resources/modules/jsp.mod
- jetty-home/src/main/resources/modules/jstl.mod
- jetty-home/src/main/resources/modules/setuid.mod
- jetty-home/src/main/resources/modules/stop.mod
- jetty-http-spi/pom.xml
- jetty-http/pom.xml
- jetty-http/src/main/java/org/eclipse/jetty/http/CookieCompliance.java
- jetty-http/src/main/java/org/eclipse/jetty/http/HttpCompliance.java
- jetty-http/src/main/java/org/eclipse/jetty/http/HttpComplianceSection.java
- jetty-http/src/main/java/org/eclipse/jetty/http/HttpParser.java
- jetty-http/src/main/java/org/eclipse/jetty/http/HttpTokens.java
- jetty-http/src/main/java/org/eclipse/jetty/http/HttpURI.java
- jetty-http/src/main/java/org/eclipse/jetty/http/MultiPartFormInputStream.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/EncodingException.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/Huffman.java → jetty-http/src/main/java/org/eclipse/jetty/http/compression/Huffman.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/HuffmanDecoder.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/HuffmanEncoder.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/NBitIntegerDecoder.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/NBitIntegerEncoder.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/NBitStringDecoder.java
- + jetty-http/src/main/java/org/eclipse/jetty/http/compression/NBitStringEncoder.java
- jetty-http/src/test/java/org/eclipse/jetty/http/HttpParserTest.java
- jetty-http/src/test/java/org/eclipse/jetty/http/HttpURITest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HuffmanTest.java → jetty-http/src/test/java/org/eclipse/jetty/http/HuffmanTest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/NBitIntegerTest.java → jetty-http/src/test/java/org/eclipse/jetty/http/NBitIntegerTest.java
- jetty-http2/http2-alpn-tests/pom.xml
- jetty-http2/http2-client/pom.xml
- jetty-http2/http2-client/src/main/java/org/eclipse/jetty/http2/client/HTTP2Client.java
- jetty-http2/http2-client/src/main/java/org/eclipse/jetty/http2/client/HTTP2ClientConnectionFactory.java
- jetty-http2/http2-client/src/main/java/org/eclipse/jetty/http2/client/HTTP2ClientSession.java
- + jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/DynamicTableTest.java
- jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/HTTP2Test.java
- jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/IdleTimeoutTest.java
- jetty-http2/http2-client/src/test/java/org/eclipse/jetty/http2/client/PrefaceTest.java
- jetty-http2/http2-common/pom.xml
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/HTTP2Connection.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/HTTP2Session.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/HTTP2Stream.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/frames/HeadersFrame.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/generator/Generator.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/ContinuationBodyParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/HeaderBlockFragments.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/HeaderBlockParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/HeadersBodyParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/Parser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/PushPromiseBodyParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/ResetBodyParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/ServerParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/SettingsBodyParser.java
- jetty-http2/http2-common/src/main/java/org/eclipse/jetty/http2/parser/UnknownBodyParser.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/ContinuationParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/DataGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/FrameFloodTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/GoAwayGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/HeadersGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/MaxFrameSizeParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/PingGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/PriorityGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/PushPromiseGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/ResetGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/SettingsGenerateParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/UnknownParseTest.java
- jetty-http2/http2-common/src/test/java/org/eclipse/jetty/http2/frames/WindowUpdateGenerateParseTest.java
- jetty-http2/http2-hpack/pom.xml
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackContext.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackDecoder.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackEncoder.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackException.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/HpackFieldPreEncoder.java
- jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/MetaDataBuilder.java
- − jetty-http2/http2-hpack/src/main/java/org/eclipse/jetty/http2/hpack/NBitInteger.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackContextTest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackDecoderTest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackEncoderTest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackPerfTest.java
- jetty-http2/http2-hpack/src/test/java/org/eclipse/jetty/http2/hpack/HpackTest.java
- jetty-http2/http2-http-client-transport/pom.xml
- jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpClientTransportOverHTTP2.java
- jetty-http2/http2-http-client-transport/src/main/java/org/eclipse/jetty/http2/client/http/HttpConnectionOverHTTP2.java
- + jetty-http2/http2-http-client-transport/src/test/java/org/eclipse/jetty/http2/client/http/GoAwayTest.java
- jetty-http2/http2-http-client-transport/src/test/java/org/eclipse/jetty/http2/client/http/HttpClientTransportOverHTTP2Test.java
- jetty-http2/http2-server/pom.xml
- jetty-http2/http2-server/src/main/config/etc/jetty-http2.xml
- jetty-http2/http2-server/src/main/config/etc/jetty-http2c.xml
- jetty-http2/http2-server/src/main/config/modules/http2.mod
- jetty-http2/http2-server/src/main/config/modules/http2c.mod
- jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/AbstractHTTP2ServerConnectionFactory.java
- jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HTTP2ServerConnection.java
- jetty-http2/http2-server/src/main/java/org/eclipse/jetty/http2/server/HTTP2ServerSession.java
- jetty-http2/http2-server/src/test/java/org/eclipse/jetty/http2/server/CloseTest.java
- jetty-http2/http2-server/src/test/java/org/eclipse/jetty/http2/server/HTTP2CServerTest.java
- jetty-http2/http2-server/src/test/java/org/eclipse/jetty/http2/server/HTTP2ServerTest.java
- jetty-http2/pom.xml
- jetty-infinispan/infinispan-common/pom.xml
- jetty-infinispan/infinispan-common/src/main/config/etc/sessions/infinispan/infinispan-common.xml
- jetty-infinispan/infinispan-embedded-query/pom.xml
- jetty-infinispan/infinispan-embedded-query/src/main/config-template/etc/sessions/infinispan/infinispan-embedded-query.xml
- jetty-infinispan/infinispan-embedded/pom.xml
- jetty-infinispan/infinispan-embedded/src/main/config-template/etc/sessions/infinispan/infinispan-embedded.xml
- jetty-infinispan/infinispan-remote-query/pom.xml
- jetty-infinispan/infinispan-remote-query/src/main/config-template/etc/sessions/infinispan/infinispan-remote-query.xml
- jetty-infinispan/infinispan-remote/pom.xml
- jetty-infinispan/infinispan-remote/src/main/config-template/etc/sessions/infinispan/infinispan-remote.xml
- jetty-infinispan/pom.xml
- jetty-io/pom.xml
- jetty-jaas/pom.xml
- jetty-jaas/src/main/config/etc/jetty-jaas.xml
- jetty-jaas/src/main/config/modules/jaas.mod
- jetty-jaspi/pom.xml
- jetty-jaspi/src/main/config/modules/jaspi.mod
- jetty-jmh/pom.xml
- + jetty-jmh/src/main/resources/META-INF/MANIFEST.MF
- jetty-jmx/pom.xml
- jetty-jmx/src/main/config/etc/jetty-jmx-remote.xml
- jetty-jmx/src/main/config/etc/jetty-jmx.xml
- jetty-jmx/src/main/config/modules/jmx-remote.mod
- jetty-jmx/src/main/config/modules/jmx.mod
- jetty-jndi/pom.xml
- jetty-jndi/src/main/jndi-config/modules/jndi.mod
- jetty-jndi/src/main/jndi-config/modules/mail.mod
- jetty-jspc-maven-plugin/pom.xml
- jetty-jspc-maven-plugin/src/main/java/org/eclipse/jetty/jspc/plugin/JspcMojo.java
- jetty-jspc-maven-plugin/src/site/site.xml
- jetty-maven-plugin/pom.xml
- jetty-maven-plugin/src/it/jetty-cdi-run-forked/src/main/jetty/jetty-context.xml
- jetty-maven-plugin/src/it/jetty-cdi-run-forked/src/main/jetty/jetty.xml
- jetty-maven-plugin/src/it/jetty-deploy-war-mojo-it/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-maven-plugin-provided-module-dep/web/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-distro-mojo-it/jetty-simple-webapp/src/base/etc/test-jetty.xml
- jetty-maven-plugin/src/it/jetty-run-distro-mojo-it/jetty-simple-webapp/src/base/modules/testmod.mod
- jetty-maven-plugin/src/it/jetty-run-forked-mojo-it/jetty-simple-webapp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-it/jetty-simple-webapp/src/config/context.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-it/jetty-simple-webapp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-jar-scan-it/MyWebApp/src/config/context.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-jar-scan-it/MyWebApp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-jsp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-mojo-multi-module-single-war-it/webapp-war/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-war-exploded-mojo-it/jetty-simple-webapp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-run-war-mojo-it/jetty-simple-webapp/src/config/jetty.xml
- jetty-maven-plugin/src/it/jetty-start-mojo-it/jetty-simple-webapp/src/config/jetty.xml
- jetty-maven-plugin/src/it/run-mojo-gwt-it/beer-server/src/config/jetty.xml
- jetty-maven-plugin/src/it/run-mojo-gwt-it/beer-server/src/main/jettyconf/context.xml
- jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyEffectiveWebXml.java
- jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyRunDistro.java
- jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyRunForkedMojo.java
- jetty-maven-plugin/src/main/java/org/eclipse/jetty/maven/plugin/JettyRunMojo.java
- jetty-maven-plugin/src/main/resources/jetty-maven.xml
- jetty-maven-plugin/src/main/resources/maven.mod
- jetty-maven-plugin/src/main/resources/maven.xml
- jetty-maven-plugin/src/site/site.xml
- jetty-memcached/jetty-memcached-sessions/pom.xml
- jetty-memcached/jetty-memcached-sessions/src/main/config/etc/sessions/session-data-cache/xmemcached.xml
- jetty-memcached/jetty-memcached-sessions/src/main/config/modules/sessions/session-data-cache/xmemcached.mod
- jetty-memcached/pom.xml
- jetty-nosql/pom.xml
- jetty-nosql/src/main/config/etc/sessions/mongo/session-store-by-address.xml
- jetty-nosql/src/main/config/etc/sessions/mongo/session-store-by-uri.xml
- jetty-nosql/src/main/config/modules/session-store-mongo.mod
- jetty-nosql/src/main/config/modules/sessions/mongo/address.mod
- jetty-nosql/src/main/config/modules/sessions/mongo/uri.mod
- jetty-openid/pom.xml
- jetty-openid/src/main/config/etc/jetty-openid.xml
- jetty-openid/src/main/config/modules/openid.mod
- jetty-openid/src/main/config/modules/openid/openid-baseloginservice.xml
- jetty-openid/src/main/java/org/eclipse/jetty/security/openid/OpenIdAuthenticator.java
- jetty-openid/src/main/java/org/eclipse/jetty/security/openid/OpenIdCredentials.java
- jetty-openid/src/test/java/org/eclipse/jetty/security/openid/OpenIdAuthenticationTest.java
- jetty-openid/src/test/java/org/eclipse/jetty/security/openid/OpenIdProvider.java
- jetty-osgi/jetty-osgi-alpn/pom.xml
- jetty-osgi/jetty-osgi-boot-jsp/pom.xml
- jetty-osgi/jetty-osgi-boot-warurl/pom.xml
- jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-deploy.xml
- jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-http.xml
- jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml
- jetty-osgi/jetty-osgi-boot/pom.xml
- jetty-osgi/jetty-osgi-httpservice/contexts/httpservice.xml
- jetty-osgi/jetty-osgi-httpservice/pom.xml
- jetty-osgi/pom.xml
- jetty-osgi/test-jetty-osgi-context/pom.xml
- jetty-osgi/test-jetty-osgi-context/src/main/context/acme.xml
- jetty-osgi/test-jetty-osgi-fragment/pom.xml
- jetty-osgi/test-jetty-osgi-server/pom.xml
- jetty-osgi/test-jetty-osgi-webapp-resources/pom.xml
- jetty-osgi/test-jetty-osgi-webapp/pom.xml
- jetty-osgi/test-jetty-osgi/pom.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-alpn.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-deploy.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-context-as-service.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-webapp-as-service.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-with-annotations.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-with-javax-websocket.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-with-jsp.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-with-resources.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http-boot-with-websocket.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http2-jdk9.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-http2.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-https.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-ssl.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty-testrealm.xml
- jetty-osgi/test-jetty-osgi/src/test/config/etc/jetty.xml
- jetty-osgi/test-jetty-osgi/src/test/java/org/eclipse/jetty/osgi/test/TestOSGiUtil.java
- jetty-plus/pom.xml
- jetty-plus/src/main/plus-config/etc/jetty-plus.xml
- jetty-plus/src/main/plus-config/modules/plus.mod
- jetty-plus/src/main/plus-config/modules/transactions.mod
- jetty-proxy/pom.xml
- jetty-proxy/src/main/config/etc/jetty-proxy.xml
- jetty-proxy/src/main/config/modules/proxy.mod
- jetty-quickstart/pom.xml
- jetty-quickstart/src/main/config/etc/example-quickstart.xml
- jetty-quickstart/src/main/config/modules/quickstart.mod
- jetty-rewrite/pom.xml
- jetty-rewrite/src/main/config/etc/jetty-rewrite-customizer.xml
- jetty-rewrite/src/main/config/etc/jetty-rewrite.xml
- jetty-rewrite/src/main/config/etc/rewrite-compactpath.xml
- jetty-rewrite/src/main/config/modules/rewrite-compactpath.mod
- jetty-rewrite/src/main/config/modules/rewrite-customizer.mod
- jetty-rewrite/src/main/config/modules/rewrite.mod
- jetty-rewrite/src/test/resources/org.mortbay.jetty.rewrite.handler/jetty-rewrite.xml
- jetty-runner/pom.xml
- jetty-runner/src/main/java/org/eclipse/jetty/runner/Runner.java
- jetty-security/pom.xml
- jetty-security/src/main/config/modules/security.mod
- jetty-server/pom.xml
- jetty-server/src/main/config/etc/home-base-warning.xml
- jetty-server/src/main/config/etc/jetty-acceptratelimit.xml
- jetty-server/src/main/config/etc/jetty-bytebufferpool-logarithmic.xml
- jetty-server/src/main/config/etc/jetty-bytebufferpool.xml
- jetty-server/src/main/config/etc/jetty-connectionlimit.xml
- jetty-server/src/main/config/etc/jetty-customrequestlog.xml
- jetty-server/src/main/config/etc/jetty-debug.xml
- jetty-server/src/main/config/etc/jetty-debuglog.xml
- jetty-server/src/main/config/etc/jetty-gzip.xml
- jetty-server/src/main/config/etc/jetty-http-forwarded.xml
- jetty-server/src/main/config/etc/jetty-http.xml
- jetty-server/src/main/config/etc/jetty-https.xml
- jetty-server/src/main/config/etc/jetty-ipaccess.xml
- jetty-server/src/main/config/etc/jetty-lowresources.xml
- jetty-server/src/main/config/etc/jetty-proxy-protocol-ssl.xml
- jetty-server/src/main/config/etc/jetty-proxy-protocol.xml
- jetty-server/src/main/config/etc/jetty-requestlog.xml
- jetty-server/src/main/config/etc/jetty-ssl-context-reload.xml
- jetty-server/src/main/config/etc/jetty-ssl-context.xml
- jetty-server/src/main/config/etc/jetty-ssl.xml
- jetty-server/src/main/config/etc/jetty-stats.xml
- jetty-server/src/main/config/etc/jetty-threadlimit.xml
- jetty-server/src/main/config/etc/jetty-threadpool.xml
- jetty-server/src/main/config/etc/jetty.xml
- jetty-server/src/main/config/etc/sessions/file/session-store.xml
- jetty-server/src/main/config/etc/sessions/id-manager.xml
- jetty-server/src/main/config/etc/sessions/jdbc/datasource.xml
- jetty-server/src/main/config/etc/sessions/jdbc/driver.xml
- jetty-server/src/main/config/etc/sessions/jdbc/session-store.xml
- jetty-server/src/main/config/etc/sessions/session-cache-hash.xml
- jetty-server/src/main/config/etc/sessions/session-cache-null.xml
- jetty-server/src/main/config/etc/sessions/session-data-cache/session-caching-store.xml
- jetty-server/src/main/config/modules/acceptratelimit.mod
- jetty-server/src/main/config/modules/bytebufferpool-logarithmic.mod
- jetty-server/src/main/config/modules/bytebufferpool.mod
- jetty-server/src/main/config/modules/connectionlimit.mod
- jetty-server/src/main/config/modules/continuation.mod
- jetty-server/src/main/config/modules/customrequestlog.mod
- jetty-server/src/main/config/modules/debug.mod
- jetty-server/src/main/config/modules/debuglog.mod
- jetty-server/src/main/config/modules/ext.mod
- jetty-server/src/main/config/modules/gzip.mod
- jetty-server/src/main/config/modules/home-base-warning.mod
- jetty-server/src/main/config/modules/http-forwarded.mod
- jetty-server/src/main/config/modules/http.mod
- jetty-server/src/main/config/modules/https.mod
- jetty-server/src/main/config/modules/inetaccess.mod
- jetty-server/src/main/config/modules/inetaccess/jetty-inetaccess.xml
- jetty-server/src/main/config/modules/ipaccess.mod
- jetty-server/src/main/config/modules/jdbc.mod
- jetty-server/src/main/config/modules/jvm.mod
- jetty-server/src/main/config/modules/logback-access.mod
- jetty-server/src/main/config/modules/logback-access/jetty-logback-access.xml
- jetty-server/src/main/config/modules/lowresources.mod
- jetty-server/src/main/config/modules/proxy-protocol-ssl.mod
- jetty-server/src/main/config/modules/proxy-protocol.mod
- jetty-server/src/main/config/modules/requestlog.mod
- jetty-server/src/main/config/modules/resources.mod
- jetty-server/src/main/config/modules/server.mod
- jetty-server/src/main/config/modules/session-cache-hash.mod
- jetty-server/src/main/config/modules/session-cache-null.mod
- jetty-server/src/main/config/modules/session-store-cache.mod
- jetty-server/src/main/config/modules/session-store-file.mod
- jetty-server/src/main/config/modules/session-store-jdbc.mod
- jetty-server/src/main/config/modules/sessions.mod
- jetty-server/src/main/config/modules/sessions/jdbc/datasource.mod
- jetty-server/src/main/config/modules/sessions/jdbc/driver.mod
- jetty-server/src/main/config/modules/ssl-reload.mod
- jetty-server/src/main/config/modules/ssl.mod
- jetty-server/src/main/config/modules/stats.mod
- jetty-server/src/main/config/modules/threadpool.mod
- jetty-server/src/main/java/org/eclipse/jetty/server/CookieCutter.java
- jetty-server/src/main/java/org/eclipse/jetty/server/HomeBaseWarning.java
- jetty-server/src/main/java/org/eclipse/jetty/server/HttpInput.java
- jetty-server/src/main/java/org/eclipse/jetty/server/MultiParts.java
- jetty-server/src/main/java/org/eclipse/jetty/server/Request.java
- jetty-server/src/main/java/org/eclipse/jetty/server/handler/DefaultHandler.java
- jetty-server/src/main/java/org/eclipse/jetty/server/handler/SizeLimitHandler.java
- jetty-server/src/main/java/org/eclipse/jetty/server/handler/ThreadLimitHandler.java
- jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java
- jetty-server/src/test/java/org/eclipse/jetty/server/CookieCutterLenientTest.java
- jetty-server/src/test/java/org/eclipse/jetty/server/CookieCutterTest.java
- jetty-server/src/test/java/org/eclipse/jetty/server/RequestTest.java
- jetty-server/src/test/java/org/eclipse/jetty/server/handler/SizeLimitHandlerTest.java
- jetty-server/src/test/java/org/eclipse/jetty/server/handler/ThreadLimitHandlerTest.java
- jetty-servlet/pom.xml
- jetty-servlet/src/main/config/modules/servlet.mod
- jetty-servlet/src/test/java/org/eclipse/jetty/servlet/GzipHandlerTest.java
- jetty-servlet/src/test/java/org/eclipse/jetty/servlet/MultiPartServletTest.java
- jetty-servlets/pom.xml
- jetty-servlets/src/main/config/modules/servlets.mod
- jetty-servlets/src/main/java/org/eclipse/jetty/servlets/CGI.java
- jetty-servlets/src/main/java/org/eclipse/jetty/servlets/DoSFilter.java
- jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PushCacheFilter.java
- jetty-servlets/src/main/java/org/eclipse/jetty/servlets/PushSessionCacheFilter.java
- jetty-servlets/src/test/java/org/eclipse/jetty/servlets/AbstractDoSFilterTest.java
- jetty-servlets/src/test/java/org/eclipse/jetty/servlets/DoSFilterTest.java
- jetty-spring/pom.xml
- jetty-spring/src/main/config/modules/spring.mod
- jetty-start/pom.xml
- jetty-start/src/main/java/org/eclipse/jetty/start/ModuleGraphWriter.java
- jetty-start/src/main/resources/org/eclipse/jetty/start/usage.txt
- jetty-start/src/test/java/org/eclipse/jetty/start/fileinits/MavenLocalRepoFileInitializerTest.java
- jetty-start/src/test/resources/bogus.xml
- jetty-start/src/test/resources/dist-home/modules/main.mod
- jetty-unixsocket/pom.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket-forwarded.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket-http.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket-http2c.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket-proxy-protocol.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket-secure.xml
- jetty-unixsocket/src/main/config-template/etc/jetty-unixsocket.xml
- jetty-unixsocket/src/main/config-template/modules/unixsocket-forwarded.mod
- jetty-unixsocket/src/main/config-template/modules/unixsocket-http.mod
- jetty-unixsocket/src/main/config-template/modules/unixsocket-http2c.mod
- jetty-unixsocket/src/main/config-template/modules/unixsocket-prefix.mod
- jetty-unixsocket/src/main/config-template/modules/unixsocket-proxy-protocol.mod
- jetty-unixsocket/src/main/config-template/modules/unixsocket-secure.mod
- jetty-util-ajax/pom.xml
- jetty-util/pom.xml
- jetty-util/src/main/config/etc/console-capture.xml
- jetty-util/src/main/config/modules/console-capture.mod
- jetty-util/src/main/config/modules/jcl-slf4j.mod
- jetty-util/src/main/config/modules/jul-impl.mod
- jetty-util/src/main/config/modules/jul-slf4j.mod
- jetty-util/src/main/config/modules/log4j-impl.mod
- jetty-util/src/main/config/modules/log4j2-api.mod
- jetty-util/src/main/config/modules/log4j2-impl.mod
- jetty-util/src/main/config/modules/log4j2-slf4j.mod
- jetty-util/src/main/config/modules/logback-impl.mod
- jetty-util/src/main/config/modules/logging-jetty.mod
- jetty-util/src/main/config/modules/logging-jul.mod
- jetty-util/src/main/config/modules/logging-log4j.mod
- jetty-util/src/main/config/modules/logging-log4j2.mod
- jetty-util/src/main/config/modules/logging-logback.mod
- jetty-util/src/main/config/modules/logging-slf4j.mod
- jetty-util/src/main/config/modules/slf4j-api.mod
- jetty-util/src/main/config/modules/slf4j-jul.mod
- jetty-util/src/main/config/modules/slf4j-log4j.mod
- jetty-util/src/main/config/modules/slf4j-log4j2.mod
- jetty-util/src/main/config/modules/slf4j-logback.mod
- jetty-util/src/main/config/modules/slf4j-simple-impl.mod
- + jetty-util/src/main/java/org/eclipse/jetty/util/CharsetStringBuilder.java
- jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java
- jetty-util/src/main/java/org/eclipse/jetty/util/Jetty.java
- jetty-util/src/main/java/org/eclipse/jetty/util/MultiPartInputStreamParser.java
- jetty-util/src/main/java/org/eclipse/jetty/util/StringUtil.java
- jetty-util/src/main/java/org/eclipse/jetty/util/URIUtil.java
- jetty-util/src/test/java/org/eclipse/jetty/util/IteratingCallbackTest.java
- jetty-util/src/test/java/org/eclipse/jetty/util/LazyListTest.java
- jetty-util/src/test/java/org/eclipse/jetty/util/RolloverFileOutputStreamTest.java
- jetty-util/src/test/java/org/eclipse/jetty/util/URIUtilTest.java
- jetty-util/src/test/java/org/eclipse/jetty/util/Utf8LineParserTest.java
- jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileSystemResourceTest.java
- jetty-webapp/pom.xml
- jetty-webapp/src/main/config/etc/jetty-webapp.xml
- jetty-webapp/src/main/config/modules/webapp.mod
- jetty-webapp/src/main/java/org/eclipse/jetty/webapp/WebAppContext.java
- jetty-websocket/javax-websocket-client-impl/pom.xml
- jetty-websocket/javax-websocket-client-impl/src/test/resources/examples/jetty-websocket-httpclient.xml
- jetty-websocket/javax-websocket-server-impl/pom.xml
- jetty-websocket/javax-websocket-server-impl/src/main/config/modules/websocket.mod
- jetty-websocket/jetty-websocket-tests/pom.xml
- jetty-websocket/pom.xml
- jetty-websocket/websocket-api/pom.xml
- jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/extensions/ExtensionFactory.java
- jetty-websocket/websocket-client/pom.xml
- jetty-websocket/websocket-client/src/test/resources/httpclient/simple/jetty-websocket-httpclient.xml
- jetty-websocket/websocket-common/pom.xml
- jetty-websocket/websocket-common/src/test/java/org/eclipse/jetty/websocket/common/WebSocketRemoteEndpointTest.java
- jetty-websocket/websocket-common/src/test/java/org/eclipse/jetty/websocket/common/extensions/FragmentExtensionTest.java
- jetty-websocket/websocket-common/src/test/java/org/eclipse/jetty/websocket/common/io/FrameFlusherTest.java
- jetty-websocket/websocket-server/pom.xml
- jetty-websocket/websocket-servlet/pom.xml
- jetty-xml/pom.xml
- jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlConfiguration.java
- jetty-xml/src/main/java/org/eclipse/jetty/xml/XmlParser.java
- jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlConfigurationTest.java
- jetty-xml/src/test/java/org/eclipse/jetty/xml/XmlParserTest.java
- jetty-xml/src/test/resources/org/eclipse/jetty/xml/configureWithAttr.xml
- jetty-xml/src/test/resources/org/eclipse/jetty/xml/configureWithElements.xml
- jetty-xml/src/test/resources/org/eclipse/jetty/xml/mortbay.xml
- pom.xml
- scripts/release-jetty.sh
- tests/pom.xml
- tests/test-continuation/pom.xml
- tests/test-distribution/pom.xml
- tests/test-distribution/src/test/java/org/eclipse/jetty/tests/distribution/AbstractDistributionTest.java
- tests/test-distribution/src/test/java/org/eclipse/jetty/tests/distribution/DemoBaseTests.java
- tests/test-distribution/src/test/resources/badapp/badapp_throwonunavailable_false.xml
- tests/test-distribution/src/test/resources/badapp/badapp_throwonunavailable_true.xml
- tests/test-distribution/src/test/resources/test-realm.xml
- tests/test-http-client-transport/pom.xml
- tests/test-integration/pom.xml
- tests/test-integration/src/test/java/org/eclipse/jetty/test/AllowedResourceAliasCheckerTest.java
- tests/test-integration/src/test/java/org/eclipse/jetty/test/DeploymentErrorInitializer.java
- tests/test-integration/src/test/java/org/eclipse/jetty/test/HttpInputInterceptorTest.java
- tests/test-integration/src/test/java/org/eclipse/jetty/test/jsp/JspAndDefaultWithAliasesTest.java
- tests/test-integration/src/test/resources/DefaultHandler.xml
- tests/test-integration/src/test/resources/NIOHttp.xml
- tests/test-integration/src/test/resources/NIOHttps.xml
- tests/test-integration/src/test/resources/RFC2616Base.xml
- tests/test-integration/src/test/resources/RFC2616_Filters.xml
- tests/test-integration/src/test/resources/RFC2616_Redirects.xml
- tests/test-integration/src/test/resources/docroots/deployerror/badapp-unavailable-false.xml
- tests/test-integration/src/test/resources/docroots/deployerror/badapp.xml
- tests/test-integration/src/test/resources/ssl.xml
- tests/test-integration/src/test/resources/webapp-contexts/RFC2616/rfc2616-webapp.xml
- tests/test-jmx/jmx-webapp-it/pom.xml
- tests/test-jmx/jmx-webapp/pom.xml
- tests/test-jmx/pom.xml
- tests/test-loginservice/pom.xml
- tests/test-quickstart/pom.xml
- tests/test-quickstart/src/test/resources/test-jndi.xml
- tests/test-quickstart/src/test/resources/test-spec.xml
- tests/test-quickstart/src/test/resources/test.xml
- tests/test-sessions/pom.xml
- tests/test-sessions/test-file-sessions/pom.xml
- tests/test-sessions/test-gcloud-sessions/pom.xml
- tests/test-sessions/test-hazelcast-sessions/pom.xml
- tests/test-sessions/test-infinispan-sessions/pom.xml
- tests/test-sessions/test-jdbc-sessions/pom.xml
- tests/test-sessions/test-memcached-sessions/pom.xml
- tests/test-sessions/test-mongodb-sessions/pom.xml
- tests/test-sessions/test-sessions-common/pom.xml
- tests/test-webapps/pom.xml
- tests/test-webapps/test-cdi-common-webapp/pom.xml
- tests/test-webapps/test-felix-webapp/pom.xml
- tests/test-webapps/test-http2-webapp/pom.xml
- tests/test-webapps/test-jaas-webapp/pom.xml
- tests/test-webapps/test-jaas-webapp/src/main/config/demo-base/webapps/test-jaas.xml
- tests/test-webapps/test-jaas-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- tests/test-webapps/test-jaas-webapp/src/main/webapp/index.html
- tests/test-webapps/test-jetty-webapp/pom.xml
- tests/test-webapps/test-jetty-webapp/src/main/assembly/embedded-jetty-web-for-webbundle.xml
- tests/test-webapps/test-jetty-webapp/src/main/config/demo-base/etc/demo-rewrite-rules.xml
- tests/test-webapps/test-jetty-webapp/src/main/config/demo-base/etc/test-realm.xml
- tests/test-webapps/test-jetty-webapp/src/main/config/demo-base/webapps/test.xml
- tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- tests/test-webapps/test-jetty-webapp/src/main/webapp/WEB-INF/web.xml
- tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html
- tests/test-webapps/test-jetty-webapp/src/main/webapp/remote.html
- tests/test-webapps/test-jndi-webapp/pom.xml
- tests/test-webapps/test-jndi-webapp/src/main/templates/jetty-test-jndi-header.xml
- tests/test-webapps/test-jndi-webapp/src/main/templates/plugin-context-header.xml
- tests/test-webapps/test-jndi-webapp/src/main/webapp/WEB-INF/jetty-env.xml
- tests/test-webapps/test-jndi-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- tests/test-webapps/test-jndi-webapp/src/main/webapp/index.html
- tests/test-webapps/test-mock-resources/pom.xml
- tests/test-webapps/test-owb-cdi-webapp/pom.xml
- tests/test-webapps/test-owb-cdi-webapp/src/main/webapp/WEB-INF/jetty-env.xml
- tests/test-webapps/test-owb-cdi-webapp/src/main/webapp/WEB-INF/jetty-web-owb.xml
- tests/test-webapps/test-proxy-webapp/pom.xml
- tests/test-webapps/test-proxy-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- tests/test-webapps/test-proxy-webapp/src/main/webapp/WEB-INF/web.xml
- tests/test-webapps/test-proxy-webapp/src/test/java/org/eclipse/jetty/ProxyWebAppTest.java
- tests/test-webapps/test-servlet-spec/pom.xml
- tests/test-webapps/test-servlet-spec/test-container-initializer/pom.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/pom.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/templates/annotations-context-header.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/templates/plugin-context-header.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/WEB-INF/jetty-env.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/WEB-INF/jetty-web.xml
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/main/webapp/index.html
- tests/test-webapps/test-servlet-spec/test-spec-webapp/src/test/jetty-plugin-env.xml
- tests/test-webapps/test-servlet-spec/test-web-fragment/pom.xml
- tests/test-webapps/test-simple-session-webapp/pom.xml
- tests/test-webapps/test-simple-webapp/pom.xml
- tests/test-webapps/test-webapp-rfc2616/pom.xml
- tests/test-webapps/test-websocket-client-provided-webapp/pom.xml
- tests/test-webapps/test-websocket-client-provided-webapp/src/main/resources/jetty-websocket-httpclient.xml
- tests/test-webapps/test-websocket-client-webapp/pom.xml
- tests/test-webapps/test-weld-cdi-webapp/pom.xml
- tests/test-webapps/test-weld-cdi-webapp/src/main/webapp/WEB-INF/jetty-env.xml
The diff was not included because it is too large.
View it on GitLab: https://salsa.debian.org/java-team/jetty9/-/compare/0c5561674a24a15275b7503bf5fae94b09d4122b...741d647619ad3340acb4e369f88507fdd984cff6
--
View it on GitLab: https://salsa.debian.org/java-team/jetty9/-/compare/0c5561674a24a15275b7503bf5fae94b09d4122b...741d647619ad3340acb4e369f88507fdd984cff6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20250407/334de606/attachment.htm>
More information about the pkg-java-commits
mailing list