public UdpSocketServer()

in log4j-server/src/main/java/org/apache/logging/log4j/server/UdpSocketServer.java [111:116]


    public UdpSocketServer(final int port, final String configLocation, final LogEventBridge<T> logEventInput)
            throws IOException {
        super(port, logEventInput);
        this.datagramSocket = new DatagramSocket(port);
        this.configLocation = configLocation;
    }