Skip to content

Commit 2d99e16

Browse files
committed
fixed wrong timeout duplicate
1 parent c68b4e0 commit 2d99e16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Transport/src/main/java/de/rub/nds/tlsattacker/transport/tcp/ClientTcpTransportHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public ClientTcpTransportHandler(Connection connection) {
3434
}
3535

3636
public ClientTcpTransportHandler(long timeout, String hostname, int port) {
37-
this(timeout, timeout, hostname, port);
37+
this(DEFAULT_CONNECTION_TIMEOUT_MILLISECONDS, timeout, hostname, port);
3838
}
3939

4040
public ClientTcpTransportHandler(long connectionTimeout, long timeout, String hostname, int port) {

0 commit comments

Comments
 (0)