Skip to content

Commit

Permalink
Provide implementation for createSocket()
Browse files Browse the repository at this point in the history
  • Loading branch information
arjantijms committed Nov 11, 2022
1 parent 6ab752c commit b099b99
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ public CustomSocketFactory() {
}
}

@Override
public Socket createSocket() throws IOException {
return socketFactory.createSocket();
}

@Override
public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
return socketFactory.createSocket(host, port);
Expand Down

0 comments on commit b099b99

Please sign in to comment.