All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbill.DNS.PacketLogger Maven / Gradle / Ivy

There is a newer version: 3.6.2_1
Show newest version
package org.xbill.DNS;

import java.net.*;

/**
 * Custom logger that can log all the packets that were send or received.
 * @author Damian Minkov
 */
public interface PacketLogger {
    public void log(String prefix, SocketAddress local, SocketAddress remote,
                    byte [] data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy