org.libtorrent4j.alerts.LsdPeerAlert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libtorrent4j Show documentation
Show all versions of libtorrent4j Show documentation
A swig Java interface for libtorrent
The newest version!
package org.libtorrent4j.alerts;
import org.libtorrent4j.swig.lsd_peer_alert;
/**
* This alert is generated when we receive a local service discovery message
* from a peer for a torrent we're currently participating in.
*
* @author gubatron
* @author aldenml
*/
public final class LsdPeerAlert extends PeerAlert {
LsdPeerAlert(lsd_peer_alert alert) {
super(alert);
}
}