public static TcpSocketServer createXmlSocketServer()

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


    public static TcpSocketServer<InputStream> createXmlSocketServer(final int port,
        final int backlog, final InetAddress localBindAddress
    ) throws IOException {
        LOGGER.entry(port);
        final TcpSocketServer<InputStream> socketServer = new TcpSocketServer<>(port, backlog, localBindAddress,
                new XmlInputStreamLogEventBridge());
        return LOGGER.exit(socketServer);
    }