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

bt.tracker.udp.ConnectRequest Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.tracker.udp;

import java.io.IOException;
import java.io.OutputStream;

class ConnectRequest extends UdpTrackerMessage {

    private static final int CONNECT_TYPE_ID = 0;

    public ConnectRequest() {
        super(CONNECT_TYPE_ID);
    }

    @Override
    protected void writeBodyTo(OutputStream out) throws IOException {
        // do nothing
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy