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

commonMain.TrackerStatus.kt Maven / Gradle / Ivy

package qbittorrent.models

import qbittorrent.models.serialization.GenerateEnumAsIntSerializer

@GenerateEnumAsIntSerializer
enum class TrackerStatus(val value: Int) {
    /** Tracker is disabled (used for DHT, PeX, and LSD) */
    DISABLED(0),

    /** Tracker has not been contacted yet */
    NOT_CONTACTED(1),

    /** Tracker has been contacted and is working */
    WORKING(2),

    /** Tracker is updating */
    UPDATING(3),

    /** Tracker has been contacted, but it is not working (or doesn't send proper replies) */
    NOT_WORKING(4),
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy