public TcpSocketServer()

in log4j-server/src/main/java/org/apache/logging/log4j/server/TcpSocketServer.java [281:290]


    public TcpSocketServer(
            final int port,
            final String configLocation,
            final LogEventBridge<T> logEventInput,
            final ServerSocket serverSocket)
            throws IOException {
        super(port, logEventInput);
        this.serverSocket = serverSocket;
        this.configLocation = configLocation;
    }