mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-09 21:34:20 +00:00
16 lines
260 B
C
16 lines
260 B
C
![]() |
#ifndef TRACKERANNOUNCEREQUEST_H
|
||
|
#define TRACKERANNOUNCEREQUEST_H
|
||
|
|
||
|
#include <qpeer.h>
|
||
|
|
||
|
struct TrackerAnnounceRequest {
|
||
|
QString info_hash;
|
||
|
QString event;
|
||
|
int numwant;
|
||
|
QPeer peer;
|
||
|
// Extensions
|
||
|
bool no_peer_id;
|
||
|
};
|
||
|
|
||
|
#endif // TRACKERANNOUNCEREQUEST_H
|