This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
from e0b25a379e Update terminology - thanks to review by kkolinko new bed84c18da Fix logic new abf5114ab3 Add NO_RFC7540_PRIORITIES setting to enum new a68294971e Send setting to disable RFC 7540 settings by default new 89f7e83ac7 Ensure RFC 7540 priorities are not re-enabled new f35647a02f Don't process priority frames new fb22e14158 Remove RFC 7450 priorities tests new 14d3637bec Implement new allocation algorithm new f59c112ff0 Remove unused code new 6448ade045 Remove unnecessary i18n strings new 7b6eed79a0 Process received priority headers new 77d5efdc46 Add support for reading priority update frame new 31ab0b3974 Add a unit test for RFC 9218 priority handling The 12 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../apache/coyote/http2/AbstractNonZeroStream.java | 94 ----- java/org/apache/coyote/http2/AbstractStream.java | 47 --- .../coyote/http2/ConnectionSettingsBase.java | 16 + java/org/apache/coyote/http2/Constants.java | 6 +- java/org/apache/coyote/http2/FrameType.java | 25 +- java/org/apache/coyote/http2/Http2AsyncParser.java | 3 + java/org/apache/coyote/http2/Http2Parser.java | 80 ++-- .../apache/coyote/http2/Http2UpgradeHandler.java | 358 ++++++------------ .../apache/coyote/http2/LocalStrings.properties | 9 +- .../apache/coyote/http2/LocalStrings_cs.properties | 1 - .../apache/coyote/http2/LocalStrings_es.properties | 3 - .../apache/coyote/http2/LocalStrings_fr.properties | 5 - .../apache/coyote/http2/LocalStrings_ja.properties | 5 - .../apache/coyote/http2/LocalStrings_ko.properties | 5 - .../coyote/http2/LocalStrings_zh_CN.properties | 5 - java/org/apache/coyote/http2/Setting.java | 4 + java/org/apache/coyote/http2/Stream.java | 36 +- .../apache/tomcat/util/http/parser/Priority.java | 2 +- test/org/apache/coyote/http2/Http2TestBase.java | 47 ++- .../apache/coyote/http2/TestAbstractStream.java | 407 --------------------- .../apache/coyote/http2/TestHttp2Section_5_3.java | 258 ------------- test/org/apache/coyote/http2/TestRfc9218.java | 165 +++++++++ 22 files changed, 458 insertions(+), 1123 deletions(-) delete mode 100644 test/org/apache/coyote/http2/TestAbstractStream.java delete mode 100644 test/org/apache/coyote/http2/TestHttp2Section_5_3.java create mode 100644 test/org/apache/coyote/http2/TestRfc9218.java --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org