Package com.biglybt.core.tracker.server
Interface TRTrackerServerRequest
-
- All Known Implementing Classes:
TRTrackerServerRequestImpl
public interface TRTrackerServerRequest
-
-
Field Summary
Fields Modifier and Type Field Description static int
RT_ANNOUNCE
static int
RT_FULL_SCRAPE
static int
RT_QUERY
static int
RT_SCRAPE
static int
RT_UNKNOWN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TRTrackerServerPeer
getPeer()
java.lang.String
getRequest()
java.util.Map
getResponse()
TRTrackerServerTorrent
getTorrent()
int
getType()
-
-
-
Field Detail
-
RT_UNKNOWN
static final int RT_UNKNOWN
- See Also:
- Constant Field Values
-
RT_ANNOUNCE
static final int RT_ANNOUNCE
- See Also:
- Constant Field Values
-
RT_SCRAPE
static final int RT_SCRAPE
- See Also:
- Constant Field Values
-
RT_FULL_SCRAPE
static final int RT_FULL_SCRAPE
- See Also:
- Constant Field Values
-
RT_QUERY
static final int RT_QUERY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
-
getPeer
TRTrackerServerPeer getPeer()
-
getTorrent
TRTrackerServerTorrent getTorrent()
-
getRequest
java.lang.String getRequest()
-
getResponse
java.util.Map getResponse()
-
-