Skip to content

Commit 45096ff

Browse files
committed
Removing debug prints.
1 parent 84ed6b9 commit 45096ff

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/config/delegate/ClientDelegate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ public void applyDelegate(Config config) {
7777
con.setPort(uri.getPort());
7878
}
7979
if (IPAddress.isValid(uri.getHost())) {
80-
System.out.println("Setting IP: " + uri.getHost());
8180
con.setIp(uri.getHost());
8281
if (sniHostname != null) {
8382
con.setHostname(sniHostname);

Transport/src/main/java/de/rub/nds/tlsattacker/transport/Connection.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public String getIp() {
5757
}
5858

5959
public void setIp(String ip) {
60-
System.out.println("Setting IP: " + ip);
6160
this.ip = ip;
6261
}
6362

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class ClientTcpTransportHandler extends TransportHandler {
3030
public ClientTcpTransportHandler(Connection connection) {
3131
super(connection.getTimeout(), ConnectionEndType.CLIENT);
3232
this.hostname = connection.getIp();
33-
System.out.println("Ctor 1: Got hostname: " + this.hostname);
3433
this.port = connection.getPort();
3534
this.connectionTimeout = 60000;
3635
}
@@ -43,15 +42,13 @@ public ClientTcpTransportHandler(Connection connection, long timeout) {
4342
public ClientTcpTransportHandler(long timeout, String hostname, int port) {
4443
super(timeout, ConnectionEndType.CLIENT);
4544
this.hostname = hostname;
46-
System.out.println("Ctor 2: Got hostname: " + this.hostname);
4745
this.port = port;
4846
this.connectionTimeout = timeout;
4947
}
5048

5149
public ClientTcpTransportHandler(long connectionTimeout, long timeout, String hostname, int port) {
5250
super(timeout, ConnectionEndType.CLIENT);
5351
this.hostname = hostname;
54-
System.out.println("Ctor 3: Got hostname: " + this.hostname);
5552
this.port = port;
5653
this.connectionTimeout = connectionTimeout;
5754
}
@@ -67,7 +64,6 @@ public void closeConnection() throws IOException {
6764
@Override
6865
public void initialize() throws IOException {
6966
socket = new Socket();
70-
System.out.println("Connecting to " + hostname);
7167
socket.connect(new InetSocketAddress(hostname, port), (int) connectionTimeout);
7268
if (!socket.isConnected()) {
7369
throw new IOException("Could not connect to " + hostname + ":" + "port");

0 commit comments

Comments
 (0)