Skip to content

Commit

Permalink
Set version to 4.4.7-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Oct 11, 2023
1 parent d48e26b commit cc0f05a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</parent>

<artifactId>vertx-core</artifactId>
<version>4.4.6</version>
<version>4.4.7-SNAPSHOT</version>

<name>Vert.x Core</name>

Expand Down Expand Up @@ -48,7 +48,7 @@
<assertj.version>3.4.1</assertj.version>
<apacheds-protocol-dns.version>1.5.7</apacheds-protocol-dns.version>
<generated.dir>${project.basedir}/src/main/generated</generated.dir>
<stack.version>4.4.6</stack.version>
<stack.version>4.4.7-SNAPSHOT</stack.version>
<jmh.version>1.36</jmh.version>
<vertx.testNativeTransport>false</vertx.testNativeTransport>
<vertx.testDomainSockets>false</vertx.testDomainSockets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,21 @@ static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HttpSer
obj.setHttp2ConnectionWindowSize(((Number)member.getValue()).intValue());
}
break;
case "http2RstFloodMaxRstFramePerWindow":
if (member.getValue() instanceof Number) {
obj.setHttp2RstFloodMaxRstFramePerWindow(((Number)member.getValue()).intValue());
}
break;
case "http2RstFloodWindowDuration":
if (member.getValue() instanceof Number) {
obj.setHttp2RstFloodWindowDuration(((Number)member.getValue()).intValue());
}
break;
case "http2RstFloodWindowDurationTimeUnit":
if (member.getValue() instanceof String) {
obj.setHttp2RstFloodWindowDurationTimeUnit(java.util.concurrent.TimeUnit.valueOf((String)member.getValue()));
}
break;
case "initialSettings":
if (member.getValue() instanceof JsonObject) {
obj.setInitialSettings(new io.vertx.core.http.Http2Settings((io.vertx.core.json.JsonObject)member.getValue()));
Expand Down Expand Up @@ -171,6 +186,11 @@ static void toJson(HttpServerOptions obj, java.util.Map<String, Object> json) {
json.put("decompressionSupported", obj.isDecompressionSupported());
json.put("handle100ContinueAutomatically", obj.isHandle100ContinueAutomatically());
json.put("http2ConnectionWindowSize", obj.getHttp2ConnectionWindowSize());
json.put("http2RstFloodMaxRstFramePerWindow", obj.getHttp2RstFloodMaxRstFramePerWindow());
json.put("http2RstFloodWindowDuration", obj.getHttp2RstFloodWindowDuration());
if (obj.getHttp2RstFloodWindowDurationTimeUnit() != null) {
json.put("http2RstFloodWindowDurationTimeUnit", obj.getHttp2RstFloodWindowDurationTimeUnit().name());
}
if (obj.getInitialSettings() != null) {
json.put("initialSettings", obj.getInitialSettings().toJson());
}
Expand Down

0 comments on commit cc0f05a

Please sign in to comment.