The "if (!initialized)" tests weren't required by the init() call are
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1079553 13f79535-47bb-0310-9956-
ffa450edef68
public ServerSocket createSocket (int port)
throws IOException
{
+ init();
ServerSocket socket = sslProxy.createServerSocket(port);
initServerSocket(socket);
return socket;
public ServerSocket createSocket (int port, int backlog)
throws IOException
{
+ init();
ServerSocket socket = sslProxy.createServerSocket(port, backlog);
initServerSocket(socket);
return socket;
InetAddress ifAddress)
throws IOException
{
+ init();
ServerSocket socket = sslProxy.createServerSocket(port, backlog,
ifAddress);
initServerSocket(socket);