update to netty 4.1.89, provide a default socket config in HttpAddress
This commit is contained in:
parent
ab4c22d4c2
commit
9fb8da8a55
3 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = net-http
|
name = net-http
|
||||||
version = 3.0.4
|
version = 3.0.5
|
||||||
|
|
||||||
org.gradle.warning.mode = ALL
|
org.gradle.warning.mode = ALL
|
||||||
|
|
|
@ -188,6 +188,7 @@ public class HttpAddress implements Address {
|
||||||
this.port = -1;
|
this.port = -1;
|
||||||
this.isSecure = false;
|
this.isSecure = false;
|
||||||
this.version = HttpVersion.HTTP_1_1;
|
this.version = HttpVersion.HTTP_1_1;
|
||||||
|
this.socketConfig = new SocketConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder setHost(String host) {
|
public Builder setHost(String host) {
|
||||||
|
|
|
@ -4,9 +4,9 @@ dependencyResolutionManagement {
|
||||||
version('gradle', '7.5.1')
|
version('gradle', '7.5.1')
|
||||||
version('junit', '5.9.2')
|
version('junit', '5.9.2')
|
||||||
version('groovy', '4.0.7')
|
version('groovy', '4.0.7')
|
||||||
version('netty', '4.1.87.Final')
|
version('netty', '4.1.89.Final')
|
||||||
version('netty-tcnative', '2.0.56.Final')
|
version('netty-tcnative', '2.0.59.Final')
|
||||||
version('datastructures', '1.0.1')
|
version('datastructures', '2.0.0')
|
||||||
version('config', '5.0.2')
|
version('config', '5.0.2')
|
||||||
version('net', '3.0.3')
|
version('net', '3.0.3')
|
||||||
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')
|
||||||
|
|
Loading…
Reference in a new issue